nixpkgs/pkgs/development/libraries/librdf/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

21 lines
639 B
Nix

{ stdenv, fetchurl, pkgconfig, librdf_raptor, ladspaH, openssl, zlib }:
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 = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}