hexcurse: new package

ncurses-based console hexeditor written in C

+26
+22
pkgs/applications/editors/hexcurse/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "hexcurse-${version}"; 5 + version = "1.58"; 6 + src = fetchFromGitHub { 7 + owner = "LonnyGomes"; 8 + repo = "hexcurse"; 9 + rev = "hexcurse-${version}"; 10 + sha256 = "0hm9mms2ija3wqba0mkk9i8fhb8q1pam6d6pjlingkzz6ygxnnp7"; 11 + }; 12 + buildInputs = [ 13 + ncurses 14 + ]; 15 + meta = with lib; { 16 + description = "ncurses-based console hexeditor written in C"; 17 + homepage = "https://github.com/LonnyGomes/hexcurse"; 18 + license = licenses.gpl2; 19 + platforms = platforms.linux; 20 + maintainers = with maintainers; [ cstrahan ]; 21 + }; 22 + }
+4
pkgs/top-level/all-packages.nix
··· 11345 11345 11346 11346 hexchat = callPackage ../applications/networking/irc/hexchat { }; 11347 11347 11348 + hexcurse = callPackage ../applications/editors/hexcurse { }; 11349 + 11348 11350 hexedit = callPackage ../applications/editors/hexedit { }; 11351 + 11352 + hiew = callPackage ../applications/editors/hiew { }; 11349 11353 11350 11354 hipchat = callPackage ../applications/networking/instant-messengers/hipchat { }; 11351 11355