summary refs log tree commit diff
path: root/pkgs/development/libraries/librdf/default.nix
blob: e02cedeeab3c2769492a14f6e0b356deb74a0808 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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;
  };
}