17 lines
522 B
Nix
17 lines
522 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 = "main";
|
|
rev = "a17f3f0e273b44c021d42c68f186fe1ae4149102";
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [ base containers process regex-compat split time ];
|
|
executableHaskellDepends = [ base ];
|
|
license = lib.licenses.bsd3;
|
|
}
|