about summary refs log tree commit diff
path: root/pkgs/applications/editors/bvi/default.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-01-20 22:47:08 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-01-20 22:47:08 +0000
commitb4b61eccce787a3fa2a1a740e50bf4cdbff3ecef (patch)
tree094dc7cc4cbee2ccffdc04535b4eab7c20e4cb67 /pkgs/applications/editors/bvi/default.nix
parentaa275908c0f70baa573a6795609c5585a3ffbc6c (diff)
downloadnixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.tar
nixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.tar.gz
nixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.tar.bz2
nixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.tar.lz
nixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.tar.xz
nixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.tar.zst
nixlib-b4b61eccce787a3fa2a1a740e50bf4cdbff3ecef.zip
svn path=/nixpkgs/trunk/; revision=10233
Diffstat (limited to 'pkgs/applications/editors/bvi/default.nix')
-rw-r--r--pkgs/applications/editors/bvi/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/applications/editors/bvi/default.nix b/pkgs/applications/editors/bvi/default.nix
new file mode 100644
index 000000000000..6d9ffdaecc81
--- /dev/null
+++ b/pkgs/applications/editors/bvi/default.nix
@@ -0,0 +1,17 @@
+args:
+args.stdenv.mkDerivation {
+  name = "bvi-1.3.2";
+
+  src = args.fetchurl {
+    url = http://prdownloads.sourceforge.net/bvi/bvi-1.3.2.src.tar.gz;
+    sha256 = "110wxqnyianqamxq4y53drqqxb9vp4k2fcvic45qggvlqkqhlfgz";
+  };
+
+  buildInputs =(with args; [ncurses]);
+
+  meta = { 
+      description = "hex editor with vim style keybindings";
+      homepage = http://bvi.sourceforge.net/download.html;
+      license = "GPL2";
+  };
+}