2016-02-07 17:06:56 +01:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
2015-05-27 17:47:18 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bviplus-${version}";
|
|
|
|
version = "0.9.4";
|
2016-02-07 17:06:56 +01:00
|
|
|
|
2015-05-27 17:47:18 +02:00
|
|
|
src = fetchurl {
|
2016-02-07 17:06:56 +01:00
|
|
|
url = "mirror://sourceforge/project/bviplus/bviplus/${version}/bviplus-${version}.tgz";
|
2015-05-27 17:47:18 +02:00
|
|
|
sha256 = "10x6fbn8v6i0y0m40ja30pwpyqksnn8k2vqd290vxxlvlhzah4zb";
|
|
|
|
};
|
2016-02-07 17:06:56 +01:00
|
|
|
|
2015-05-27 17:47:18 +02:00
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
];
|
2016-02-07 17:06:56 +01:00
|
|
|
|
2015-05-27 17:47:18 +02:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2016-02-07 17:06:56 +01:00
|
|
|
|
2016-06-23 21:09:00 +02:00
|
|
|
buildFlags = [ "CFLAGS=-fgnu89-inline" ];
|
|
|
|
|
2016-02-07 17:06:56 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-23 21:09:00 +02:00
|
|
|
description = "Ncurses based hex editor with a vim-like interface";
|
|
|
|
homepage = http://bviplus.sourceforge.net;
|
2015-05-27 17:47:18 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
};
|
|
|
|
}
|