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

43 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, oniguruma }:
stdenv.mkDerivation rec {
name = "jq-${version}";
version="1.6";
src = fetchurl {
url="https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
2018-12-02 19:14:39 +00:00
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 ];
2018-07-27 21:00:57 +00:00
configureFlags =
[
"--bindir=\${bin}/bin"
"--sbindir=\${bin}/bin"
"--datadir=\${doc}/share"
"--mandir=\${man}/share/man"
]
# 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
2017-10-02 20:01:31 +00:00
meta = with stdenv.lib; {
2013-05-20 07:17:20 +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 ];
platforms = with platforms; linux ++ darwin;
downloadPage = "http://stedolan.github.io/jq/download/";
updateWalker = true;
inherit version;
2013-05-20 07:17:20 +00:00
};
}