packages feed

xmonad-utils-0.1: xmonad-utils.cabal

name:               xmonad-utils
version:            0.1
license:            BSD3
license-file:       LICENSE
author:             Andrea Rossato
maintainer:         <andrea.rossato@unibz.it>

stability:          experimental
category:           System
synopsis:           A small collection of X utilities
description:        A small collection of X utilities useful when
                    running XMonad. It includes:
                    .
                    * hxsel, which returns the text currently in the X selection;
                    .
                    * hslock, a simple X screen lock;
                    .
                    * hmanage: an utility to toggle the override-redirect property of any
                    window;
                    .
                    * and hhp, a simple utility to hide the pointer, similar
                    to unclutter.
homepage:           http://www.haskell.org/haskellwiki/Xmonad-utils

build-depends:      base>=2.0, X11>=1.3, ghc>=6.8, unix, random>=1.0
build-type:         Simple
cabal-version:      >=1.4
tested-with:        GHC==6.8.2

executable:         hxsel
main-is:            Hxsel.hs
other-modules: Heval Hhp Hmanage Hxput Hxsel Utils
hs-source-dirs:     src
ghc-options:        -funbox-strict-fields -Wall
ghc-prof-options:   -prof -auto-all

executable:         hxput
main-is:            Hxput.hs
hs-source-dirs:     src
ghc-options:        -funbox-strict-fields -Wall
ghc-prof-options:   -prof -auto-all

executable:         hslock
main-is:            Hslock.hs
extensions:         ForeignFunctionInterface
hs-source-dirs:     src
extra-libraries:    crypt
ghc-options:        -funbox-strict-fields -Wall
ghc-prof-options:   -prof -auto-all

executable:         hmanage
main-is:            Hmanage.hs
hs-source-dirs:     src
ghc-options:        -funbox-strict-fields -Wall
ghc-prof-options:   -prof -auto-all

executable:         hhp
main-is:            Hhp.hs
hs-source-dirs:     src
ghc-options:        -funbox-strict-fields -Wall
ghc-prof-options:   -prof -auto-all

executable:         heval
main-is:            Heval.hs
hs-source-dirs:     src
ghc-options:        -funbox-strict-fields -Wall
ghc-prof-options:   -prof -auto-all