summary refs log tree commit diff
path: root/pkgs/applications/editors/bvi/default.nix
blob: 223aabcdf82e16f67baf148823cc5e34bc41140c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args : with args;
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";
  };
}