summary refs log tree commit diff
path: root/pkgs/applications/editors/hexcurse/default.nix
blob: 861bf88f7dd27653405c2a2ce592bbd31fd669a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}