Merge pull request #181074 from delroth/hexedit-1.5
This commit is contained in:
commit
675c2b6ee7
1 changed files with 13 additions and 9 deletions
|
@ -1,20 +1,24 @@
|
||||||
{ lib, stdenv, fetchurl, ncurses }:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hexedit";
|
pname = "hexedit";
|
||||||
version = "1.2.13";
|
version = "1.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://rigaux.org/${pname}-${version}.src.tgz";
|
owner = "pixel";
|
||||||
sha256 = "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka";
|
repo = "hexedit";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-fIgPbr7qmxyEga2YaAD0+NBM8LeDm/tVAq99ub7aiAI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "View and edit files in hexadecimal or in ASCII";
|
description = "View and edit files in hexadecimal or in ASCII";
|
||||||
homepage = "http://prigaux.chez.com/hexedit.html";
|
homepage = "http://rigaux.org/hexedit.html";
|
||||||
license = lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ delroth ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue