952c5269b3
jiegec discovered that the reason the aarch64-darwin build was failing was because pre-generated configure script failed to detect the macOS version. With this change we'll just ignore the pre-generated configure script, and build it ourself with autoreconf.
117 lines
2.9 KiB
Nix
117 lines
2.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, gettext
|
|
, help2man
|
|
, pkg-config
|
|
, texinfo
|
|
, boehmgc
|
|
, readline
|
|
, guiSupport ? false, makeWrapper, tcl, tcllib, tk
|
|
, miSupport ? true, json_c
|
|
, nbdSupport ? !stdenv.isDarwin, libnbd
|
|
, textStylingSupport ? true
|
|
, dejagnu
|
|
|
|
# update script only
|
|
, writeScript
|
|
}:
|
|
|
|
let
|
|
isCross = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
in stdenv.mkDerivation rec {
|
|
pname = "poke";
|
|
version = "2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-hB4oWRfGc4zpgqaTDjDr6t7PsGVaedkYTxb4dqn+bkc=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "info" "lib" ]
|
|
# help2man can't cross compile because it runs `poke --help` to
|
|
# generate the man page
|
|
++ lib.optional (!isCross) "man";
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
gettext
|
|
pkg-config
|
|
texinfo
|
|
] ++ lib.optionals (!isCross) [
|
|
help2man
|
|
] ++ lib.optionals guiSupport [
|
|
makeWrapper
|
|
tcl.tclPackageHook
|
|
];
|
|
|
|
buildInputs = [ boehmgc readline ]
|
|
++ lib.optionals guiSupport [ tcl tcllib tk ]
|
|
++ lib.optional miSupport json_c
|
|
++ lib.optional nbdSupport libnbd
|
|
++ lib.optional textStylingSupport gettext
|
|
++ lib.optional (!isCross) dejagnu;
|
|
|
|
configureFlags = [
|
|
# libpoke depends on $datadir/poke, so we specify the datadir in
|
|
# $lib, and later move anything else it doesn't depend on to $out
|
|
"--datadir=${placeholder "lib"}/share"
|
|
] ++ lib.optionals guiSupport [
|
|
"--enable-gui"
|
|
"--with-tcl=${tcl}/lib"
|
|
"--with-tk=${tk}/lib"
|
|
"--with-tkinclude=${tk.dev}/include"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = !isCross;
|
|
checkInputs = lib.optionals (!isCross) [ dejagnu ];
|
|
|
|
postInstall = ''
|
|
moveToOutput share/emacs "$out"
|
|
moveToOutput share/vim "$out"
|
|
'';
|
|
|
|
postFixup = lib.optionalString guiSupport ''
|
|
wrapProgram "$out/bin/poke-gui" \
|
|
--prefix TCLLIBPATH ' ' "$TCLLIBPATH"
|
|
|
|
# Prevent tclPackageHook from auto-wrapping all binaries, we only
|
|
# need to wrap poke-gui
|
|
unset TCLLIBPATH
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = writeScript "update-poke" ''
|
|
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl pcre common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
|
|
# Expect the text in format of '<a href="...">poke 2.0</a>'
|
|
new_version="$(curl -s https://www.jemarch.net/poke |
|
|
pcregrep -o1 '>poke ([0-9.]+)</a>')"
|
|
update-source-version ${pname} "$new_version"
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Interactive, extensible editor for binary data";
|
|
homepage = "http://www.jemarch.net/poke";
|
|
changelog = "https://git.savannah.gnu.org/cgit/poke.git/plain/ChangeLog?h=releases/poke-${version}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres kira-bruneau ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|
|
|
|
# TODO: Enable guiSupport by default once it's more than just a stub
|