2016-01-17 15:04:40 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook
|
|
|
|
, librdf_raptor2, ladspaH, openssl, zlib
|
2013-03-02 06:45:13 -08:00
|
|
|
}:
|
2010-07-28 04:55:54 -07:00
|
|
|
|
2013-03-02 06:45:13 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.5.0";
|
|
|
|
name = "liblrdf-${version}";
|
2009-09-21 02:58:21 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-03-02 06:45:13 -08:00
|
|
|
url = "http://github.com/swh/LRDF/archive/${version}.tar.gz";
|
|
|
|
sha256 = "18p2flb2sv2hq6w2qkd29z9c7knnwqr3f12i2srshlzx6vwkm05s";
|
2009-09-21 02:58:21 -07:00
|
|
|
};
|
|
|
|
|
2016-01-17 15:04:40 -08:00
|
|
|
preAutoreconf = "rm m4/*";
|
2013-03-02 06:45:13 -08:00
|
|
|
postPatch = "sed -i -e 's:usr/local:usr:' examples/{instances,remove}_test.c";
|
2013-02-03 06:56:48 -08:00
|
|
|
|
2016-01-17 15:04:40 -08:00
|
|
|
buildInputs = [ pkgconfig autoreconfHook ladspaH openssl zlib ];
|
2013-03-02 06:45:13 -08:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ librdf_raptor2 ];
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Lightweight RDF library with special support for LADSPA plugins";
|
2009-09-21 02:58:21 -07:00
|
|
|
homepage = http://sourceforge.net/projects/lrdf/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2010-07-28 04:55:54 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-21 02:58:21 -07:00
|
|
|
};
|
|
|
|
}
|