nixpkgs/pkgs/applications/window-managers/xmonad/xmonad-contrib.nix
Peter Simons b1ef3e6e36 Last batch of Haskell expression updates.
* haskell-mkcabal: updated to version 1.0.0
 * haskell-ghc-syb-utils: updated to version 0.2.1.0
 * haskell-darcs: updated to version 2.5.2

svn path=/nixpkgs/trunk/; revision=28449
2011-08-10 00:35:08 +00:00

22 lines
604 B
Nix

{ cabal, X11, X11Xft, extensibleExceptions, mtl, utf8String, xmonad
}:
cabal.mkDerivation (self: {
pname = "xmonad-contrib";
version = "0.9.2";
sha256 = "06hg5j4w8iz62wmyygq4c7xcbi9dxlhhh3dbic438cjk7c0w1h5p";
buildDepends = [
X11 X11Xft extensibleExceptions mtl utf8String xmonad
];
meta = {
homepage = "http://xmonad.org/";
description = "Third party extensions for xmonad";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})