2021-08-05 21:33:18 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
2023-01-20 10:41:00 +00:00
|
|
|
|
, fetchurl
|
2023-10-09 19:29:22 +00:00
|
|
|
|
, removeReferencesTo
|
2021-08-05 21:33:18 +00:00
|
|
|
|
, autoreconfHook
|
2023-07-15 17:15:38 +00:00
|
|
|
|
, bison
|
2021-08-05 21:33:18 +00:00
|
|
|
|
, onigurumaSupport ? true
|
|
|
|
|
, oniguruma
|
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
pname = "jq";
|
2024-01-13 08:15:51 +00:00
|
|
|
|
version = "1.7.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
|
# Note: do not use fetchpatch or fetchFromGitHub to keep this package available in __bootPackages
|
|
|
|
|
src = fetchurl {
|
2023-10-09 19:29:22 +00:00
|
|
|
|
url = "https://github.com/jqlang/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
2024-01-13 08:15:51 +00:00
|
|
|
|
hash = "sha256-R4ycoSn9LjRD/icxS0VeIR4NjGC8j/ffcDhz3u7lgMI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
|
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
|
# Upstream script that writes the version that's eventually compiled
|
|
|
|
|
# and printed in `jq --help` relies on a .git directory which our src
|
|
|
|
|
# doesn't keep.
|
|
|
|
|
preConfigure = ''
|
|
|
|
|
echo "#!/bin/sh" > scripts/version
|
|
|
|
|
echo "echo ${version}" >> scripts/version
|
|
|
|
|
patchShebangs scripts/version
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# paranoid mode: make sure we never use vendored version of oniguruma
|
|
|
|
|
# Note: it must be run after automake, or automake will complain
|
|
|
|
|
preBuild = ''
|
|
|
|
|
rm -r ./modules/oniguruma
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
buildInputs = lib.optionals onigurumaSupport [ oniguruma ];
|
2023-10-09 19:29:22 +00:00
|
|
|
|
nativeBuildInputs = [ removeReferencesTo autoreconfHook bison ];
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
|
|
# Darwin requires _REENTRANT be defined to use functions like `lgamma_r`.
|
|
|
|
|
# Otherwise, configure will detect that they’re in libm, but the build will fail
|
|
|
|
|
# with clang 16+ due to calls to undeclared functions.
|
|
|
|
|
# This is fixed upstream and can be removed once jq is updated (to 1.7 or an unstable release).
|
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin (toString [
|
|
|
|
|
"-D_REENTRANT=1"
|
|
|
|
|
"-D_DARWIN_C_SOURCE=1"
|
|
|
|
|
]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
|
configureFlags = [
|
2020-04-24 23:36:52 +00:00
|
|
|
|
"--bindir=\${bin}/bin"
|
|
|
|
|
"--sbindir=\${bin}/bin"
|
|
|
|
|
"--datadir=\${doc}/share"
|
|
|
|
|
"--mandir=\${man}/share/man"
|
2021-04-05 15:23:46 +00:00
|
|
|
|
] ++ lib.optional (!onigurumaSupport) "--with-oniguruma=no"
|
2021-08-05 21:33:18 +00:00
|
|
|
|
# jq is linked to libjq:
|
|
|
|
|
++ lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
|
# Break the dependency cycle: $dev refers to $bin via propagated-build-outputs, and
|
|
|
|
|
# $bin refers to $dev because of https://github.com/jqlang/jq/commit/583e4a27188a2db097dd043dd203b9c106bba100
|
|
|
|
|
postFixup = ''
|
|
|
|
|
remove-references-to -t "$dev" "$bin/bin/jq"
|
|
|
|
|
'';
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
doInstallCheck = true;
|
|
|
|
|
installCheckTarget = "check";
|
|
|
|
|
|
|
|
|
|
postInstallCheck = ''
|
|
|
|
|
$bin/bin/jq --help >/dev/null
|
2021-02-24 18:30:23 +00:00
|
|
|
|
$bin/bin/jq -r '.values[1]' <<< '{"values":["hello","world"]}' | grep '^world$' > /dev/null
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
|
passthru = { inherit onigurumaSupport; };
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-11-30 08:33:03 +00:00
|
|
|
|
description = "A lightweight and flexible command-line JSON processor";
|
2023-10-09 19:29:22 +00:00
|
|
|
|
homepage = "https://jqlang.github.io/jq/";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.mit;
|
2023-10-09 19:29:22 +00:00
|
|
|
|
maintainers = with maintainers; [ raskin artturin ncfavier ];
|
2021-08-05 21:33:18 +00:00
|
|
|
|
platforms = platforms.unix;
|
2023-10-09 19:29:22 +00:00
|
|
|
|
downloadPage = "https://jqlang.github.io/jq/download/";
|
2023-08-04 22:07:22 +00:00
|
|
|
|
mainProgram = "jq";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|