mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
531e4b80c9
Only acts on one-line dependency lists.
30 lines
881 B
Nix
30 lines
881 B
Nix
{ stdenv, fetchurl, pkgconfig, autoreconfHook
|
|
, librdf_raptor2, ladspaH, openssl, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.0";
|
|
name = "liblrdf-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://github.com/swh/LRDF/archive/${version}.tar.gz";
|
|
sha256 = "18p2flb2sv2hq6w2qkd29z9c7knnwqr3f12i2srshlzx6vwkm05s";
|
|
};
|
|
|
|
preAutoreconf = "rm m4/*";
|
|
postPatch = "sed -i -e 's:usr/local:usr:' examples/{instances,remove}_test.c";
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ ladspaH openssl zlib ];
|
|
|
|
propagatedBuildInputs = [ librdf_raptor2 ];
|
|
|
|
meta = {
|
|
description = "Lightweight RDF library with special support for LADSPA plugins";
|
|
homepage = https://sourceforge.net/projects/lrdf/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|