f915ea70a6
See https://lists.gnu.org/archive/html/info-gnu/2021-04/msg00003.html for release information.
76 lines
1.8 KiB
Nix
76 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, gettext
|
|
, help2man
|
|
, pkg-config
|
|
, texinfo
|
|
, makeWrapper
|
|
, boehmgc
|
|
, readline
|
|
, guiSupport ? false, tcl, tcllib, tk
|
|
, miSupport ? true, json_c
|
|
, nbdSupport ? !stdenv.isDarwin, libnbd
|
|
, textStylingSupport ? true
|
|
, dejagnu
|
|
}:
|
|
|
|
let
|
|
isCross = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
in stdenv.mkDerivation rec {
|
|
pname = "poke";
|
|
version = "1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
|
hash = "sha256-9hz42ltkwBoTWTc3JarRyiV/NcHJJp5NUN0GZBg932I=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
help2man
|
|
pkg-config
|
|
texinfo
|
|
] ++ lib.optional guiSupport makeWrapper;
|
|
|
|
buildInputs = [ boehmgc readline ]
|
|
++ lib.optional guiSupport tk
|
|
++ lib.optional miSupport json_c
|
|
++ lib.optional nbdSupport libnbd
|
|
++ lib.optional textStylingSupport gettext
|
|
++ lib.optional (!isCross) dejagnu;
|
|
|
|
configureFlags = lib.optionals guiSupport [
|
|
"--with-tcl=${tcl}/lib"
|
|
"--with-tk=${tk}/lib"
|
|
"--with-tkinclude=${tk.dev}/include"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = !isCross;
|
|
checkInputs = lib.optionals (!isCross) [ dejagnu ];
|
|
|
|
postFixup = lib.optionalString guiSupport ''
|
|
wrapProgram "$out/bin/poke-gui" \
|
|
--prefix TCLLIBPATH ' ' ${tcllib}/lib/tcllib${tcllib.version}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Interactive, extensible editor for binary data";
|
|
homepage = "http://www.jemarch.net/poke";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres metadark ];
|
|
platforms = platforms.unix;
|
|
changelog = "https://git.savannah.gnu.org/cgit/poke.git/plain/ChangeLog?h=releases/poke-${version}";
|
|
};
|
|
}
|
|
|
|
# TODO: Enable guiSupport by default once it's more than just a stub
|