2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, extensibleExceptions, mtl, random, utf8String, X11, X11Xft
|
|
|
|
, 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";
|
2013-01-04 19:09:51 +01:00
|
|
|
version = "0.11";
|
|
|
|
sha256 = "188brys16b3wmxd22j4284wnpasm8bixdjfxl1jr2q2xi45nzks0";
|
2011-08-10 02:35:08 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01: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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-04-14 22:57:28 +02:00
|
|
|
};
|
|
|
|
})
|