summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/xmonad/xmonad-yggdrasil.nix
blob: e8786d3561c9b8cd2820cac813da75db528b8842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, aeson, base, bytestring, containers, directory
, filepath, hostname, hpack, mtl, network, parsec, process, stdenv
, temporary, transformers, unix, utf8-string, X11, xmonad
, xmonad-contrib, libnotify
}:
mkDerivation {
  pname = "xmonad-yggdrasil";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  libraryToolDepends = [ hpack ];
  executableHaskellDepends = [
    aeson base bytestring containers directory filepath hostname mtl
    network parsec process temporary transformers unix utf8-string X11
    xmonad xmonad-contrib libnotify
  ];
  preConfigure = "hpack";
  license = "unknown";
  hydraPlatforms = stdenv.lib.platforms.none;
}