summary refs log tree commit diff
path: root/pkgs/applications/window-managers/xmonad/xmonad-contrib.nix
blob: a1e077ff75def40c3e01937a2dab888f52cc09bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ cabal, X11, X11Xft, extensibleExceptions, mtl, random, utf8String
, xmonad
}:

cabal.mkDerivation (self: {
  pname = "xmonad-contrib";
  version = "0.9.2";
  sha256 = "06hg5j4w8iz62wmyygq4c7xcbi9dxlhhh3dbic438cjk7c0w1h5p";
  buildDepends = [
    X11 X11Xft extensibleExceptions mtl random 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
    ];
  };
})