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

stdenv.mkDerivation {
  name = "bvi-1.3.2";

  src = fetchurl {
    url = http://prdownloads.sourceforge.net/bvi/bvi-1.3.2.src.tar.gz;
    sha256 = "110wxqnyianqamxq4y53drqqxb9vp4k2fcvic45qggvlqkqhlfgz";
  };

  buildInputs = [ ncurses ];

  meta = { 
    description = "Hex editor with vim style keybindings";
    homepage = http://bvi.sourceforge.net/download.html;
    license = "GPL2";
  };
}