about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/hexedit/default.nix
blob: 56b721842a36f2168ae7a1fc58bd948014ddc7ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, ncurses }:

stdenv.mkDerivation rec {
  pname = "hexedit";
  version = "1.2.13";

  src = fetchurl {
    url = "http://rigaux.org/${pname}-${version}.src.tgz";
    sha256 = "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka";
  };

  buildInputs = [ ncurses ];

  meta = {
    description = "View and edit files in hexadecimal or in ASCII";
    homepage = "http://prigaux.chez.com/hexedit.html";
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
  };
}