2021-08-05 21:33:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2023-01-20 10:41:00 +00:00
|
|
|
, fetchurl
|
2021-08-05 21:33:18 +00:00
|
|
|
, autoreconfHook
|
|
|
|
, onigurumaSupport ? true
|
|
|
|
, oniguruma
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "jq";
|
2020-11-30 08:33:03 +00:00
|
|
|
version = "1.6";
|
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 {
|
|
|
|
url = "https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-XejI4pqqP7nMa0e7JymfJxNU67clFOOsytx9OLW7qnI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
patches = [
|
2023-01-20 10:41:00 +00:00
|
|
|
./fix-tests-when-building-without-regex-supports.patch
|
2021-04-05 15:23:46 +00:00
|
|
|
];
|
|
|
|
|
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 ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
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
|
|
|
|
|
|
|
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";
|
2021-10-28 06:52:43 +00:00
|
|
|
homepage = "https://stedolan.github.io/jq/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2023-01-20 10:41:00 +00:00
|
|
|
maintainers = with maintainers; [ raskin globin artturin ];
|
2021-08-05 21:33:18 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
downloadPage = "https://stedolan.github.io/jq/download/";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|