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

43 lines
1.1 KiB
Nix
Raw Normal View History

2017-10-02 23:01:31 +03:00
{ stdenv, fetchurl, fetchpatch, 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 22:14:39 +03:00
sha256="0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x";
2013-05-20 11:17:20 +04:00
};
2018-07-28 00:00:57 +03:00
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
buildInputs = [ oniguruma ];
2018-07-28 00:00:57 +03:00
configureFlags =
[
"--bindir=\${bin}/bin"
"--sbindir=\${bin}/bin"
"--datadir=\${doc}/share"
"--mandir=\${man}/share/man"
]
# jq is linked to libjq:
2018-07-28 00:00:57 +03:00
++ stdenv.lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
2017-10-04 13:59:07 +03:00
doInstallCheck = true;
installCheckTarget = "check";
postInstallCheck = ''
$bin/bin/jq --help >/dev/null
'';
2017-10-04 13:59:07 +03:00
2017-10-02 23:01:31 +03:00
meta = with stdenv.lib; {
2013-05-20 11:17:20 +04:00
description = ''A lightweight and flexible command-line JSON processor'';
2017-10-02 23:01:31 +03: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 11:17:20 +04:00
};
}