stockholm/krebs/5pkgs/haskell/desktop-pager.nix

25 lines
826 B
Nix
Raw Normal View History

2023-02-07 13:28:16 +00:00
{ mkDerivation, aeson, base, blessings, bytestring, containers
, data-default, extra, fetchgit, hack, lib, optparse-applicative
, probability, scanner, speculate, split, terminal-size, text, unix
, utf8-string, X11
2022-04-05 20:16:29 +00:00
}:
mkDerivation {
pname = "desktop-pager";
2022-04-05 20:16:29 +00:00
version = "1.0.0";
src = fetchgit {
url = "https://cgit.krebsco.de/pager";
2023-02-07 13:28:16 +00:00
sha256 = "07wjlhnb27vfhkqq5vhi768mlrcpwl4b2yfk04v3lw047q6pmby0";
rev = "dfa3ff346d22d332ffbadd46963f1cc5cb2a4939";
2022-04-05 20:16:29 +00:00
fetchSubmodules = true;
};
2023-02-07 13:28:16 +00:00
isLibrary = true;
2022-04-05 20:16:29 +00:00
isExecutable = true;
2023-02-07 13:28:16 +00:00
libraryHaskellDepends = [ base extra utf8-string X11 ];
2022-04-05 20:16:29 +00:00
executableHaskellDepends = [
2023-02-07 13:28:16 +00:00
aeson base blessings bytestring containers data-default hack
2022-04-05 20:16:29 +00:00
optparse-applicative probability scanner speculate split
terminal-size text unix X11
];
license = lib.licenses.mit;
}