2016-02-07 16:06:56 +00:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
2015-05-27 16:47:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bviplus";
|
2020-01-20 04:23:13 +00:00
|
|
|
version = "1.0";
|
2016-02-07 16:06:56 +00:00
|
|
|
|
2015-05-27 16:47:18 +01:00
|
|
|
src = fetchurl {
|
2016-02-07 16:06:56 +00:00
|
|
|
url = "mirror://sourceforge/project/bviplus/bviplus/${version}/bviplus-${version}.tgz";
|
2020-01-20 04:23:13 +00:00
|
|
|
sha256 = "08q2fdyiirabbsp5qpn3v8jxp4gd85l776w6gqvrbjwqa29a8arg";
|
2015-05-27 16:47:18 +01:00
|
|
|
};
|
2016-02-07 16:06:56 +00:00
|
|
|
|
2015-05-27 16:47:18 +01:00
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
];
|
2016-02-07 16:06:56 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2016-02-07 16:06:56 +00:00
|
|
|
|
2016-06-23 20:09:00 +01:00
|
|
|
buildFlags = [ "CFLAGS=-fgnu89-inline" ];
|
|
|
|
|
2016-02-07 16:06:56 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-23 20:09:00 +01:00
|
|
|
description = "Ncurses based hex editor with a vim-like interface";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://bviplus.sourceforge.net";
|
2015-05-27 16:47:18 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
};
|
|
|
|
}
|