summary refs log tree commit diff
path: root/pkgs/applications/editors/bviplus/default.nix
blob: 2c6b153370e40bae607e2beab2c4eb68f7666c3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, ncurses }:

stdenv.mkDerivation rec {
  pname = "bviplus";
  version = "0.9.4";

  src = fetchurl {
    url = "mirror://sourceforge/project/bviplus/bviplus/${version}/bviplus-${version}.tgz";
    sha256 = "10x6fbn8v6i0y0m40ja30pwpyqksnn8k2vqd290vxxlvlhzah4zb";
  };

  buildInputs = [
    ncurses
  ];

  makeFlags = "PREFIX=$(out)";

  buildFlags = [ "CFLAGS=-fgnu89-inline" ];

  meta = with stdenv.lib; {
    description = "Ncurses based hex editor with a vim-like interface";
    homepage = http://bviplus.sourceforge.net;
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ cstrahan ];
  };
}