2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
|
|
|
|
2014-10-26 02:37:16 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "bvi";
|
2019-10-21 15:51:19 +02:00
|
|
|
version = "1.4.1";
|
2008-01-20 23:47:08 +01:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/bvi/${pname}-${version}.src.tar.gz";
|
2019-10-21 15:51:19 +02:00
|
|
|
sha256 = "0a0yl0dcyff31k3dr4dpgqmlwygp8iaslnr5gmb6814ylxf2ad9h";
|
2008-01-20 23:47:08 +01:00
|
|
|
};
|
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
buildInputs = [ ncurses ];
|
2008-01-20 23:47:08 +01:00
|
|
|
|
2014-10-26 02:37:16 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Hex editor with vim style keybindings";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://bvi.sourceforge.net/download.html";
|
2014-10-26 02:37:16 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2019-02-11 23:18:25 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2008-01-20 23:47:08 +01:00
|
|
|
};
|
|
|
|
}
|