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

41 lines
1.3 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
};
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
# jq is linked to libjq:
2017-10-02 20:01:31 +00:00
configureFlags = stdenv.lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
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
};
}