nixpkgs/pkgs/applications/editors/hexcurse/default.nix

23 lines
592 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
name = "hexcurse-${version}";
2017-03-03 23:00:46 +00:00
version = "1.60.0";
src = fetchFromGitHub {
owner = "LonnyGomes";
repo = "hexcurse";
2017-03-03 23:00:46 +00:00
rev = "v${version}";
sha256 = "17ckkxfzbqvvfdnh10if4aqdcq98q3vl6dn1v6f4lhr4ifnyjdlk";
};
2017-03-03 23:00:46 +00:00
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 ];
};
}