summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/xmonad-stockholm.nix
blob: c43dbe27173f6ccfab3607a5050258d509869448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation, base, containers, directory, fetchgit, filepath
, lib, unix, X11, X11-xft, X11-xshape, xmonad, xmonad-contrib
}:
mkDerivation {
  pname = "xmonad-stockholm";
  version = "1.3.1";
  src = fetchgit {
    url = "https://cgit.krebsco.de/xmonad-stockholm";
    sha256 = "1m4kkppy143jvjzhy5aawh8q6sglpnqhiajxbdcr42j02ibf3vvq";
    rev = "89bae8aad73db8fe9e11da7d515f0b236e7fea51";
    fetchSubmodules = true;
  };
  libraryHaskellDepends = [
    base containers directory filepath unix X11 X11-xft X11-xshape
    xmonad xmonad-contrib
  ];
  license = lib.licenses.mit;
}