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

54 lines
1.6 KiB
Nix
Raw Normal View History

2017-10-02 20:01:31 +00:00
{ stdenv, fetchurl, fetchpatch, oniguruma }:
stdenv.mkDerivation rec {
name = "jq-${version}";
version="1.5";
src = fetchurl {
url="https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
2015-10-08 18:56:21 +00:00
sha256="0g29kyz4ykasdcrb0zmbrp2jqs9kv1wz9swx849i2d1ncknbzln4";
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 ];
patches = [
(fetchpatch {
name = "CVE-2015-8863.patch";
url = https://github.com/stedolan/jq/commit/8eb1367ca44e772963e704a700ef72ae2e12babd.diff;
sha256 = "18bjanzvklfzlzzd690y88725l7iwl4f6wnr429na5pfmircbpvh";
})
(fetchpatch {
name = "CVE-2016-4074.patch";
url = https://patch-diff.githubusercontent.com/raw/stedolan/jq/pull/1214.diff;
sha256 = "1w8bapnyp56di6p9casbfczfn8258rw0z16grydavdjddfm280l9";
})
2013-05-20 07:17:20 +00:00
];
patchFlags = [ "-p2" ]; # `src` subdir was introduced after v1.5 was released
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}";
2018-07-27 21:00:57 +00:00
installCheckPhase = "$bin/bin/jq --help >/dev/null";
2017-10-04 10:59:07 +00:00
doInstallCheck = true;
2018-07-27 21:00:57 +00:00
doCheck = true;
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
};
}