2021-07-30 13:29:27 +01:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
2022-12-08 18:46:54 +00:00
|
|
|
|
, fetchurl
|
2021-07-30 13:29:27 +01:00
|
|
|
|
, autoreconfHook
|
2023-06-28 23:01:46 +01:00
|
|
|
|
, bison
|
2021-07-30 13:29:27 +01:00
|
|
|
|
, onigurumaSupport ? true
|
|
|
|
|
, oniguruma
|
|
|
|
|
}:
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "jq";
|
2020-11-28 18:42:00 +00:00
|
|
|
|
version = "1.6";
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
2022-12-08 18:46:54 +00:00
|
|
|
|
# Note: do not use fetchpatch or fetchFromGitHub to keep this package available in __bootPackages
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
|
|
|
|
sha256 = "sha256-XejI4pqqP7nMa0e7JymfJxNU67clFOOsytx9OLW7qnI=";
|
2013-05-20 08:17:20 +01:00
|
|
|
|
};
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
2021-03-31 02:30:34 +01:00
|
|
|
|
patches = [
|
2022-12-08 18:46:54 +00:00
|
|
|
|
./fix-tests-when-building-without-regex-supports.patch
|
2021-03-31 02:30:34 +01:00
|
|
|
|
];
|
|
|
|
|
|
2018-07-27 22:00:57 +01:00
|
|
|
|
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
|
|
|
|
|
|
2021-03-31 02:30:34 +01: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-06-28 23:01:46 +01:00
|
|
|
|
nativeBuildInputs = [ autoreconfHook bison ];
|
|
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
]);
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
2020-11-28 18:42:00 +00:00
|
|
|
|
configureFlags = [
|
2018-07-27 22:00:57 +01:00
|
|
|
|
"--bindir=\${bin}/bin"
|
|
|
|
|
"--sbindir=\${bin}/bin"
|
|
|
|
|
"--datadir=\${doc}/share"
|
|
|
|
|
"--mandir=\${man}/share/man"
|
2021-03-31 02:30:34 +01:00
|
|
|
|
] ++ lib.optional (!onigurumaSupport) "--with-oniguruma=no"
|
2021-07-30 13:29:27 +01:00
|
|
|
|
# jq is linked to libjq:
|
|
|
|
|
++ lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
2017-10-04 11:59:07 +01:00
|
|
|
|
doInstallCheck = true;
|
2018-07-29 16:55:07 +01:00
|
|
|
|
installCheckTarget = "check";
|
|
|
|
|
|
|
|
|
|
postInstallCheck = ''
|
|
|
|
|
$bin/bin/jq --help >/dev/null
|
2021-02-22 23:51:28 +00:00
|
|
|
|
$bin/bin/jq -r '.values[1]' <<< '{"values":["hello","world"]}' | grep '^world$' > /dev/null
|
2018-07-29 16:55:07 +01:00
|
|
|
|
'';
|
2017-10-04 11:59:07 +01:00
|
|
|
|
|
2021-03-31 02:30:34 +01:00
|
|
|
|
passthru = { inherit onigurumaSupport; };
|
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
|
meta = with lib; {
|
2020-11-28 18:42:00 +00:00
|
|
|
|
description = "A lightweight and flexible command-line JSON processor";
|
2021-10-27 10:39:43 +01:00
|
|
|
|
homepage = "https://stedolan.github.io/jq/";
|
2017-10-02 21:01:31 +01:00
|
|
|
|
license = licenses.mit;
|
2022-12-08 18:29:44 +00:00
|
|
|
|
maintainers = with maintainers; [ raskin globin artturin ];
|
2021-07-30 13:29:27 +01:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
downloadPage = "https://stedolan.github.io/jq/download/";
|
2023-08-04 13:52:10 +01:00
|
|
|
|
mainProgram = "jq";
|
2013-05-20 08:17:20 +01:00
|
|
|
|
};
|
|
|
|
|
}
|