summary refs log tree commit diff
path: root/pkgs/applications/editors/hexcurse
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2015-05-26 21:32:33 -0400
committerCharles Strahan <charles.c.strahan@gmail.com>2015-05-27 11:48:05 -0400
commit4976bcd21825b1608cd0fb86b5b5e643f4edc3b1 (patch)
tree97b2db850c352097e00f2e7ccf0084a2efa0b7c8 /pkgs/applications/editors/hexcurse
parenta22cffa7bb3f00bdeccfcc959323966526f9b1d9 (diff)
downloadnixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.tar
nixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.tar.gz
nixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.tar.bz2
nixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.tar.lz
nixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.tar.xz
nixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.tar.zst
nixpkgs-4976bcd21825b1608cd0fb86b5b5e643f4edc3b1.zip
hexcurse: new package
ncurses-based console hexeditor written in C
Diffstat (limited to 'pkgs/applications/editors/hexcurse')
-rw-r--r--pkgs/applications/editors/hexcurse/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/editors/hexcurse/default.nix b/pkgs/applications/editors/hexcurse/default.nix
new file mode 100644
index 00000000000..861bf88f7dd
--- /dev/null
+++ b/pkgs/applications/editors/hexcurse/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, lib, fetchFromGitHub, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "hexcurse-${version}";
+  version = "1.58";
+  src = fetchFromGitHub {
+    owner = "LonnyGomes";
+    repo = "hexcurse";
+    rev = "hexcurse-${version}";
+    sha256 = "0hm9mms2ija3wqba0mkk9i8fhb8q1pam6d6pjlingkzz6ygxnnp7";
+  };
+  buildInputs = [
+    ncurses
+  ];
+  meta = with lib; {
+    description = "ncurses-based console hexeditor written in C";
+    homepage = "https://github.com/LonnyGomes/hexcurse";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ cstrahan ];
+  };
+}