Merge pull request #181074 from delroth/hexedit-1.5

This commit is contained in:
ajs124 2022-07-11 19:11:35 +02:00 committed by GitHub
commit 675c2b6ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
}; };
} }