about summary refs log tree commit diff
path: root/pkgs/applications/editors/bvi/default.nix
blob: 6d9ffdaecc813ca9ab1e136872a0a7b61cac6760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args:
args.stdenv.mkDerivation {
  name = "bvi-1.3.2";

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

  buildInputs =(with args; [ncurses]);

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