nix-config/home/desktop-xmonad/hmonitors.nix

21 lines
531 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ mkDerivation, base, containers, lib, process, regex-compat, split
, time
}:
mkDerivation {
pname = "hmonitors";
version = "0.1.0.0";
src = builtins.fetchGit {
name = "hmonitors";
url = "https://git.monotremata.xyz/rilla/hmonitors.git";
ref = "master";
2022-05-22 14:32:14 +02:00
rev = "e9bdde561442b7e4a45a64853875545b50e68b37";
2022-01-18 09:32:55 +01:00
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base containers process regex-compat split time
];
executableHaskellDepends = [ base ];
license = lib.licenses.bsd3;
}