2021-02-23 20:18:03 +00:00
|
|
|
{ mkDerivation, base, blessings, containers, data-default, fetchgit
|
2021-10-19 20:51:26 +00:00
|
|
|
, lens, lib, mtl, old-locale, process, scanner, time, unix, zippers
|
2021-02-23 20:18:03 +00:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "hack";
|
2022-04-06 12:48:13 +00:00
|
|
|
version = "1.0.1";
|
2021-02-23 20:18:03 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://cgit.krebsco.de/hack";
|
2022-04-06 12:48:13 +00:00
|
|
|
sha256 = "0ry5ikn89ij512qvk1xhdhfz4s8a6b9yawgx6lxgnw5jkiyjd7ka";
|
|
|
|
rev = "f3ea150aca5cc86878fa10bc5b1f0918fc154e2a";
|
2021-02-23 20:18:03 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
libraryHaskellDepends = [ base ];
|
|
|
|
executableHaskellDepends = [
|
|
|
|
base blessings containers data-default lens mtl old-locale process
|
|
|
|
scanner time unix zippers
|
|
|
|
];
|
2021-10-19 20:51:26 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-02-23 20:18:03 +00:00
|
|
|
}
|