diff options
author | tv <tv@krebsco.de> | 2025-03-12 20:36:03 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2025-03-13 15:27:19 +0100 |
commit | 448ad7b25489e582a52535a2cba4f0c7a1483b77 (patch) | |
tree | 679a33fec3eae7f785b85d7ff1d38a82b625d8e8 /pkgs/haskell/hack.nix | |
parent | 5969e4ea04455e9b26909b03f6e909de7940a4a4 (diff) |
Diffstat (limited to 'pkgs/haskell/hack.nix')
-rw-r--r-- | pkgs/haskell/hack.nix | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/haskell/hack.nix b/pkgs/haskell/hack.nix index f1b22b5..0eb0232 100644 --- a/pkgs/haskell/hack.nix +++ b/pkgs/haskell/hack.nix @@ -1,13 +1,14 @@ { mkDerivation, base, blessings, containers, data-default, fetchgit -, lens, lib, mtl, old-locale, process, input-scanner, time, unix, zippers +, lens, lib, mtl, old-locale, process, terminal-scanner, time, unix +, zippers }: mkDerivation { pname = "hack"; - version = "1.0.2"; + version = "1.0.3"; src = fetchgit { url = "https://cgit.krebsco.de/hack"; - hash = "sha256-QHSGF4wFwLyn8W8jYbN1QajMnmQqUI+7VWk7yVvJgIg="; - rev = "refs/tags/1.0.2"; + sha256 = "04vxcfm204sxn3v48ch27srgqgpiqbm9i82lrmgp1yyx84wchq32"; + rev = "a6fc1e51f1f87a7cc485a47000f23f1f054beb95"; fetchSubmodules = true; }; isLibrary = true; @@ -15,7 +16,8 @@ mkDerivation { libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base blessings containers data-default lens mtl old-locale process - input-scanner time unix zippers + terminal-scanner time unix zippers ]; license = lib.licenses.mit; + mainProgram = "hack"; } |