lrdf: 0.5.0 -> 0.6.1

Also remove the second copy of lrdf from gstreamer/bad inputs.

+10 -9
-1
pkgs/development/libraries/gstreamer/bad/default.nix
··· 178 178 libgudev 179 179 libnice 180 180 libofa 181 - lrdf 182 181 sbc 183 182 spandsp 184 183
+10 -8
pkgs/development/libraries/lrdf/default.nix
··· 1 - { config, stdenv, fetchurl, pkgconfig, autoreconfHook 1 + { config, stdenv, fetchFromGitHub, pkgconfig, autoreconfHook 2 2 , librdf_raptor2, ladspaH, openssl, zlib 3 3 , doCheck ? config.doCheckByDefault or false, ladspaPlugins 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 - version = "0.5.0"; 8 - pname = "liblrdf"; 7 + pname = "lrdf"; 8 + version = "0.6.1"; 9 9 10 - src = fetchurl { 11 - url = "https://github.com/swh/LRDF/archive/${version}.tar.gz"; 12 - sha256 = "18p2flb2sv2hq6w2qkd29z9c7knnwqr3f12i2srshlzx6vwkm05s"; 10 + src = fetchFromGitHub { 11 + owner = "swh"; 12 + repo = "LRDF"; 13 + rev = "v${version}"; 14 + sha256 = "00wzkfb8y0aqd519ypz067cq099dpc89w69zw8ln39vl6f9x2pd4"; 13 15 }; 14 16 15 17 postPatch = stdenv.lib.optionalString doCheck '' 16 18 sed -i -e 's:usr/local:${ladspaPlugins}:' examples/{instances,remove}_test.c 17 19 ''; 18 20 19 - preAutoreconf = "rm m4/*"; 20 21 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 21 - buildInputs = [ ladspaH openssl zlib ]; 22 22 23 23 propagatedBuildInputs = [ librdf_raptor2 ]; 24 24 25 25 inherit doCheck; 26 + 27 + enableParallelBuilding = true; 26 28 27 29 meta = { 28 30 description = "Lightweight RDF library with special support for LADSPA plugins";