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

stdenv.mkDerivation rec {
  name = "bviplus-${version}";
  version = "0.9.4";
  src = fetchurl {
    url = "mirror://sourceforge/project/bviplus/bviplus/${version}/bviplus-${version}.tgz";
    sha256 = "10x6fbn8v6i0y0m40ja30pwpyqksnn8k2vqd290vxxlvlhzah4zb";
  };
  buildInputs = [
    ncurses
  ];
  makeFlags = "PREFIX=$(out)";
  meta = with 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 ];
  };
}