about summary refs log tree commit diff
path: root/pkgs/applications/editors/hexedit
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-09-14 22:41:41 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-14 23:24:10 +0200
commitcb94852ae311f616a0cdd18fe0f94bbf017f2270 (patch)
tree05fd6c3189092e820ec3b577aff5cca393b34d23 /pkgs/applications/editors/hexedit
parent517612c2ca1d48d028afefeafffdcfd5932d1a6b (diff)
downloadnixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.tar
nixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.tar.gz
nixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.tar.bz2
nixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.tar.lz
nixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.tar.xz
nixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.tar.zst
nixlib-cb94852ae311f616a0cdd18fe0f94bbf017f2270.zip
hexedit: New package, version 1.2.12.
A typical three-pane style hex editor, which is somewhat similar than bvi, but
smaller and without vi-like keybindings.

(Don't ask me why I use both, I just can't tell why I'm sometimes in bvi and
sometimes in hexedit mood... there simply is no rational explanation)

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/editors/hexedit')
-rw-r--r--pkgs/applications/editors/hexedit/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/editors/hexedit/default.nix b/pkgs/applications/editors/hexedit/default.nix
new file mode 100644
index 000000000000..07985dc214ae
--- /dev/null
+++ b/pkgs/applications/editors/hexedit/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, ncurses }:
+
+stdenv.mkDerivation rec {
+  name = "hexedit-${version}";
+  version = "1.2.12";
+
+  src = fetchurl {
+    url = "http://rigaux.org/${name}.src.tgz";
+    sha256 = "bcffbf3d128516cc4e1da64485866fbb5f62754f2af8327e7a527855186ba10f";
+  };
+
+  buildInputs = [ ncurses ];
+
+  meta = {
+    description = "View and edit files in hexadecimal or in ASCII";
+    homepage = "http://prigaux.chez.com/hexedit.html";
+    license = stdenv.lib.licenses.gpl2Plus;
+  };
+}