22 lines
587 B
Nix
22 lines
587 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 = "165195cd964969c744120997850954c9371690a4";
|
|
rev = "24a52ffb02b068135d736006fecccfe955099da7";
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
base containers process regex-compat split time
|
|
];
|
|
executableHaskellDepends = [ base ];
|
|
license = lib.licenses.bsd3;
|
|
}
|