about summary refs log tree commit diff
path: root/pkgs/applications/editors/hexcurse
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-03 17:00:46 -0600
committervbgl <vbgl@users.noreply.github.com>2017-03-05 09:37:25 +0100
commitcd18b65432df1ac3888bb63b78c0af19232c8a14 (patch)
tree47c6e48e764327af61eacb2dce111173d1d13571 /pkgs/applications/editors/hexcurse
parent36b238648e0caeb6d25a80f96cc7d4ad14e73be3 (diff)
downloadnixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.tar
nixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.tar.gz
nixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.tar.bz2
nixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.tar.lz
nixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.tar.xz
nixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.tar.zst
nixlib-cd18b65432df1ac3888bb63b78c0af19232c8a14.zip
hexcurse: 1.58 -> 1.60.0
Diffstat (limited to 'pkgs/applications/editors/hexcurse')
-rw-r--r--pkgs/applications/editors/hexcurse/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/editors/hexcurse/default.nix b/pkgs/applications/editors/hexcurse/default.nix
index 861bf88f7dd2..17bb9739b9b7 100644
--- a/pkgs/applications/editors/hexcurse/default.nix
+++ b/pkgs/applications/editors/hexcurse/default.nix
@@ -2,16 +2,16 @@
 
 stdenv.mkDerivation rec {
   name = "hexcurse-${version}";
-  version = "1.58";
+  version = "1.60.0";
+
   src = fetchFromGitHub {
     owner = "LonnyGomes";
     repo = "hexcurse";
-    rev = "hexcurse-${version}";
-    sha256 = "0hm9mms2ija3wqba0mkk9i8fhb8q1pam6d6pjlingkzz6ygxnnp7";
+    rev = "v${version}";
+    sha256 = "17ckkxfzbqvvfdnh10if4aqdcq98q3vl6dn1v6f4lhr4ifnyjdlk";
   };
-  buildInputs = [
-    ncurses
-  ];
+  buildInputs = [ ncurses ];
+  
   meta = with lib; {
     description = "ncurses-based console hexeditor written in C";
     homepage = "https://github.com/LonnyGomes/hexcurse";