2011-08-15 00:52:05 +02:00
|
|
|
{ cabal, extensibleExceptions, mtl, random, utf8String, X11, X11Xft
|
2011-08-12 02:18:56 +02:00
|
|
|
, xmonad
|
2011-08-10 02:35:08 +02:00
|
|
|
}:
|
2008-04-14 22:57:28 +02:00
|
|
|
|
2011-08-10 02:35:08 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2008-04-14 22:57:28 +02:00
|
|
|
pname = "xmonad-contrib";
|
2011-03-12 18:28:15 +01:00
|
|
|
version = "0.9.2";
|
|
|
|
sha256 = "06hg5j4w8iz62wmyygq4c7xcbi9dxlhhh3dbic438cjk7c0w1h5p";
|
2011-08-10 02:35:08 +02:00
|
|
|
buildDepends = [
|
2011-08-15 00:52:05 +02:00
|
|
|
extensibleExceptions mtl random utf8String X11 X11Xft xmonad
|
2011-08-10 02:35:08 +02:00
|
|
|
];
|
2008-04-14 22:57:28 +02:00
|
|
|
meta = {
|
2011-08-10 02:35:08 +02:00
|
|
|
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
|
|
|
|
];
|
2008-04-14 22:57:28 +02:00
|
|
|
};
|
|
|
|
})
|