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