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

17 lines
522 B
Nix
Raw Normal View History

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