3
0
Fork 0
forked from mirrors/nixpkgs

hexcurse: new package

ncurses-based console hexeditor written in C
This commit is contained in:
Charles Strahan 2015-05-26 21:32:33 -04:00
parent a22cffa7bb
commit 4976bcd218
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, lib, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
name = "hexcurse-${version}";
version = "1.58";
src = fetchFromGitHub {
owner = "LonnyGomes";
repo = "hexcurse";
rev = "hexcurse-${version}";
sha256 = "0hm9mms2ija3wqba0mkk9i8fhb8q1pam6d6pjlingkzz6ygxnnp7";
};
buildInputs = [
ncurses
];
meta = with lib; {
description = "ncurses-based console hexeditor written in C";
homepage = "https://github.com/LonnyGomes/hexcurse";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}

View file

@ -11345,8 +11345,12 @@ let
hexchat = callPackage ../applications/networking/irc/hexchat { }; hexchat = callPackage ../applications/networking/irc/hexchat { };
hexcurse = callPackage ../applications/editors/hexcurse { };
hexedit = callPackage ../applications/editors/hexedit { }; hexedit = callPackage ../applications/editors/hexedit { };
hiew = callPackage ../applications/editors/hiew { };
hipchat = callPackage ../applications/networking/instant-messengers/hipchat { }; hipchat = callPackage ../applications/networking/instant-messengers/hipchat { };
homebank = callPackage ../applications/office/homebank { homebank = callPackage ../applications/office/homebank {