pager: fc6105a -> dfa3ff3

This commit is contained in:
tv 2023-02-07 14:28:16 +01:00
parent 2ed5961330
commit 1ce5e46e7b

View File

@ -1,21 +1,22 @@
{ mkDerivation, base, blessings, bytestring, containers { mkDerivation, aeson, base, blessings, bytestring, containers
, data-default, hack, lib, optparse-applicative, probability , data-default, extra, fetchgit, hack, lib, optparse-applicative
, scanner, speculate, split, terminal-size, text, unix, X11 , probability, scanner, speculate, split, terminal-size, text, unix
, fetchgit , utf8-string, X11
}: }:
mkDerivation { mkDerivation {
pname = "pager"; pname = "pager";
version = "1.0.0"; version = "1.0.0";
src = fetchgit { src = fetchgit {
url = "https://cgit.krebsco.de/pager"; url = "https://cgit.krebsco.de/pager";
sha256 = "1qlkhqidaa6w02ix9ambfdsm7lfyx30ap481b9ic1ppyfkhqzfp6"; sha256 = "07wjlhnb27vfhkqq5vhi768mlrcpwl4b2yfk04v3lw047q6pmby0";
rev = "fc6105a5e7d1e3a07bf07ea85e7902dd8e9fc849"; rev = "dfa3ff346d22d332ffbadd46963f1cc5cb2a4939";
fetchSubmodules = true; fetchSubmodules = true;
}; };
isLibrary = false; isLibrary = true;
isExecutable = true; isExecutable = true;
libraryHaskellDepends = [ base extra utf8-string X11 ];
executableHaskellDepends = [ executableHaskellDepends = [
base blessings bytestring containers data-default hack aeson base blessings bytestring containers data-default hack
optparse-applicative probability scanner speculate split optparse-applicative probability scanner speculate split
terminal-size text unix X11 terminal-size text unix X11
]; ];