Merge branch 'master' of git://github.com/ip1981/nixpkgs

jq: make sure libjq is in library search path
This commit is contained in:
Shea Levy 2014-08-20 11:33:25 -04:00
commit 908bd66407

View file

@ -18,6 +18,11 @@ stdenv.mkDerivation {
src = fetchurl {
inherit (s) url sha256;
};
# jq is linked to libjq:
configureFlags = [
"LDFLAGS=-Wl,-rpath,\\\${libdir}"
];
meta = {
inherit (s) version;
description = ''A lightweight and flexible command-line JSON processor'';