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

21 lines
531 B
Nix

{ 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";
rev = "e9bdde561442b7e4a45a64853875545b50e68b37";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base containers process regex-compat split time
];
executableHaskellDepends = [ base ];
license = lib.licenses.bsd3;
}