svn path=/nixpkgs/trunk/; revision=10233

This commit is contained in:
Marc Weber
2008-01-20 22:47:08 +00:00
parent aa275908c0
commit b4b61eccce
3 changed files with 21 additions and 51 deletions
+17
View File
@@ -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";
};
}