diff options
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/haskell/hack.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/haskell/hack.nix b/pkgs/haskell/hack.nix new file mode 100644 index 0000000..f1b22b5 --- /dev/null +++ b/pkgs/haskell/hack.nix @@ -0,0 +1,21 @@ +{ mkDerivation, base, blessings, containers, data-default, fetchgit +, lens, lib, mtl, old-locale, process, input-scanner, time, unix, zippers +}: +mkDerivation { + pname = "hack"; + version = "1.0.2"; + src = fetchgit { + url = "https://cgit.krebsco.de/hack"; + hash = "sha256-QHSGF4wFwLyn8W8jYbN1QajMnmQqUI+7VWk7yVvJgIg="; + rev = "refs/tags/1.0.2"; + fetchSubmodules = true; + }; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ + base blessings containers data-default lens mtl old-locale process + input-scanner time unix zippers + ]; + license = lib.licenses.mit; +} |