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