nixpkgs/pkgs/development/tools/jq/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, nixosTests, fetchurl, oniguruma }:
stdenv.mkDerivation rec {
pname = "jq";
2020-11-28 19:42:00 +01:00
version = "1.6";
src = fetchurl {
2020-11-28 19:42:00 +01:00
url =
"https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
sha256 = "0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x";
2013-05-20 09:17:20 +02:00
};
2018-07-27 23:00:57 +02:00
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
buildInputs = [ oniguruma ];
2020-11-28 19:42:00 +01:00
configureFlags = [
2018-07-27 23:00:57 +02:00
"--bindir=\${bin}/bin"
"--sbindir=\${bin}/bin"
"--datadir=\${doc}/share"
"--mandir=\${man}/share/man"
2020-11-28 19:42:00 +01:00
]
# jq is linked to libjq:
++ lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
2017-10-04 12:59:07 +02:00
doInstallCheck = true;
installCheckTarget = "check";
postInstallCheck = ''
$bin/bin/jq --help >/dev/null
2021-02-23 00:51:28 +01:00
$bin/bin/jq -r '.values[1]' <<< '{"values":["hello","world"]}' | grep '^world$' > /dev/null
'';
2017-10-04 12:59:07 +02:00
meta = with lib; {
2020-11-28 19:42:00 +01:00
description = "A lightweight and flexible command-line JSON processor";
2017-10-02 22:01:31 +02:00
license = licenses.mit;
maintainers = with maintainers; [ raskin globin ];
2017-10-02 22:01:31 +02:00
platforms = with platforms; linux ++ darwin;
downloadPage = "http://stedolan.github.io/jq/download/";
updateWalker = true;
inherit version;
2013-05-20 09:17:20 +02:00
};
}