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

45 lines
1.1 KiB
Nix
Raw Normal View History

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