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