2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl, oniguruma }:
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "jq";
|
2018-11-03 10:47:35 +00:00
|
|
|
version="1.6";
|
2016-09-25 14:14:52 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-26 14:37:25 +01:00
|
|
|
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 08:17:20 +01:00
|
|
|
};
|
2016-09-25 14:14:52 +01:00
|
|
|
|
2018-07-27 22:00:57 +01:00
|
|
|
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
|
|
|
|
|
2016-09-25 14:14:52 +01:00
|
|
|
buildInputs = [ oniguruma ];
|
|
|
|
|
2018-07-27 22:00:57 +01:00
|
|
|
configureFlags =
|
|
|
|
[
|
|
|
|
"--bindir=\${bin}/bin"
|
|
|
|
"--sbindir=\${bin}/bin"
|
|
|
|
"--datadir=\${doc}/share"
|
|
|
|
"--mandir=\${man}/share/man"
|
|
|
|
]
|
2018-07-29 16:55:07 +01:00
|
|
|
# jq is linked to libjq:
|
2018-07-27 22:00:57 +01:00
|
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
|
2016-09-25 14:14:52 +01:00
|
|
|
|
2017-10-04 11:59:07 +01:00
|
|
|
doInstallCheck = true;
|
2018-07-29 16:55:07 +01:00
|
|
|
installCheckTarget = "check";
|
|
|
|
|
|
|
|
postInstallCheck = ''
|
|
|
|
$bin/bin/jq --help >/dev/null
|
|
|
|
'';
|
2017-10-04 11:59:07 +01:00
|
|
|
|
2017-10-02 21:01:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-20 08:17:20 +01:00
|
|
|
description = ''A lightweight and flexible command-line JSON processor'';
|
2017-10-02 21:01:31 +01:00
|
|
|
license = licenses.mit;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ raskin globin ];
|
2017-10-02 21:01:31 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-09-26 14:37:25 +01:00
|
|
|
downloadPage = "http://stedolan.github.io/jq/download/";
|
|
|
|
updateWalker = true;
|
|
|
|
inherit version;
|
2013-05-20 08:17:20 +01:00
|
|
|
};
|
|
|
|
}
|