diff options
author | tv <tv@krebsco.de> | 2024-06-04 14:26:59 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2024-06-04 14:26:59 +0200 |
commit | d6c3807d20b448c3c41d440c7d1391d4cacd4b10 (patch) | |
tree | b65254ae54d4535794a4a3cb4f366eb107a22fcd | |
parent | 3c1becf4b3d689aa3f7e77b61521a259fce3f6d0 (diff) |
hack: init at 1.0.2
-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; +} |