stockholm/tv/5pkgs/haskell/xmonad-tv/default.nix

17 lines
502 B
Nix
Raw Normal View History

{ mkDerivation, aeson, base, bytestring, containers, directory
2022-12-05 15:25:33 +00:00
, extra, filepath, lib, systemd, template-haskell, th-env
, transformers, unix, X11, xmonad, xmonad-contrib
2018-11-30 08:03:52 +00:00
}:
mkDerivation {
pname = "xmonad-tv";
version = "1.0.0";
src = ./src;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2022-12-05 15:25:33 +00:00
aeson base bytestring containers directory extra filepath systemd
template-haskell th-env transformers unix X11 xmonad xmonad-contrib
2018-11-30 08:03:52 +00:00
];
2021-12-10 22:37:07 +00:00
license = lib.licenses.mit;
2018-11-30 08:03:52 +00:00
}