stockholm/krebs/5pkgs/haskell/xmonad-stockholm.nix

19 lines
582 B
Nix
Raw Normal View History

2022-04-06 13:32:06 +00:00
{ mkDerivation, base, containers, directory, fetchgit, filepath
, lib, unix, X11, X11-xft, X11-xshape, xmonad, xmonad-contrib
2015-11-09 16:56:47 +00:00
}:
2022-04-06 13:32:06 +00:00
mkDerivation {
2015-11-09 16:56:47 +00:00
pname = "xmonad-stockholm";
2022-04-06 13:32:06 +00:00
version = "1.3.1";
2015-11-09 16:56:47 +00:00
src = fetchgit {
2022-04-06 13:32:06 +00:00
url = "https://cgit.krebsco.de/xmonad-stockholm";
sha256 = "1m4kkppy143jvjzhy5aawh8q6sglpnqhiajxbdcr42j02ibf3vvq";
rev = "89bae8aad73db8fe9e11da7d515f0b236e7fea51";
fetchSubmodules = true;
2015-11-09 16:56:47 +00:00
};
libraryHaskellDepends = [
2022-04-06 13:32:06 +00:00
base containers directory filepath unix X11 X11-xft X11-xshape
xmonad xmonad-contrib
2015-11-09 16:56:47 +00:00
];
2021-10-19 20:51:26 +00:00
license = lib.licenses.mit;
2015-11-09 16:56:47 +00:00
}