nixpkgs/pkgs/development/libraries/librdf/default.nix
Marc Weber 028f3ec7d0 updating redland, adding rasqal, raptor, librdf
svn path=/nixpkgs/trunk/; revision=17320
2009-09-21 09:58:21 +00:00

20 lines
575 B
Nix

args: with args;
stdenv.mkDerivation {
name = "liblrdf-0.4.0";
src = fetchurl {
url = mirror://sourceforge/lrdf/liblrdf/0.4.0/liblrdf-0.4.0.tar.gz;
sha256 = "015jv7pp0a0qxgljgdvf7d01nj4fx0zgzg0wayjp7v86pa38xscm";
};
buildInputs = [pkgconfig librdf_raptor ladspaH openssl zlib];
meta = {
description = "A lightweight RDF library with special support for LADSPA plugins.";
homepage = http://sourceforge.net/projects/lrdf/;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}