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

21 lines
504 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "hexedit";
2013-12-15 11:00:22 +00:00
version = "1.2.13";
src = fetchurl {
url = "http://rigaux.org/${pname}-${version}.src.tgz";
2013-12-15 11:00:22 +00:00
sha256 = "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka";
};
buildInputs = [ ncurses ];
meta = {
description = "View and edit files in hexadecimal or in ASCII";
homepage = "http://prigaux.chez.com/hexedit.html";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
};
}