3e10ee5c92
* haskell-dataenc: updated to version 0.14.0.2 * haskell-fclabels: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=28574
23 lines
620 B
Nix
23 lines
620 B
Nix
{ cabal, extensibleExceptions, mtl, random, utf8String, X11, X11Xft
|
|
, xmonad
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xmonad-contrib";
|
|
version = "0.9.2";
|
|
sha256 = "06hg5j4w8iz62wmyygq4c7xcbi9dxlhhh3dbic438cjk7c0w1h5p";
|
|
buildDepends = [
|
|
extensibleExceptions mtl random utf8String X11 X11Xft 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
|
|
];
|
|
};
|
|
})
|