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, lib
, 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 = lib.platforms.none;
}
|