2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
|
|
|
|
2014-10-26 01:37:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bvi-${version}";
|
|
|
|
version = "1.4.0";
|
2008-01-20 22:47:08 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2014-10-26 01:37:16 +01:00
|
|
|
url = "mirror://sourceforge/bvi/${name}.src.tar.gz";
|
|
|
|
sha256 = "00pq9rv7s8inqxq2m3xshxi58691i3pxw9smibcrgh6768l3qnh1";
|
2008-01-20 22:47:08 +00:00
|
|
|
};
|
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
buildInputs = [ ncurses ];
|
2008-01-20 22:47:08 +00:00
|
|
|
|
2014-10-26 01:37:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Hex editor with vim style keybindings";
|
|
|
|
homepage = http://bvi.sourceforge.net/download.html;
|
2014-10-26 01:37:16 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
platforms = platforms.linux;
|
2008-01-20 22:47:08 +00:00
|
|
|
};
|
|
|
|
}
|