bviplus: new package
ncurses based hex editor with a vim-like interface
This commit is contained in:
parent
15b9fe1fab
commit
069913e1b9
21
pkgs/applications/editors/bviplus/default.nix
Normal file
21
pkgs/applications/editors/bviplus/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, lib, fetchurl, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bviplus-${version}";
|
||||
version = "0.9.4";
|
||||
src = fetchurl {
|
||||
url = "http://downloads.sourceforge.net/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 ];
|
||||
};
|
||||
}
|
@ -10530,6 +10530,8 @@ let
|
||||
|
||||
bvi = callPackage ../applications/editors/bvi { };
|
||||
|
||||
bviplus = callPackage ../applications/editors/bviplus { };
|
||||
|
||||
calf = callPackage ../applications/audio/calf {
|
||||
inherit (gnome) libglade;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user