about summary refs log tree commit diff
path: root/pkgs/applications/editors/hexcurse/default.nix
blob: 5c0f2ee18e1f73c15eca2de8ef6e737b42105246 (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.60.0";

  src = fetchFromGitHub {
    owner = "LonnyGomes";
    repo = "hexcurse";
    rev = "v${version}";
    sha256 = "17ckkxfzbqvvfdnh10if4aqdcq98q3vl6dn1v6f4lhr4ifnyjdlk";
  };
  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 ];
  };
}