1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

librdf: update the libraries

This commit is contained in:
Vladimír Čunát 2013-03-02 15:45:13 +01:00
parent da71b6d579
commit face3a8242
4 changed files with 29 additions and 17 deletions

View file

@ -1,16 +1,28 @@
{ stdenv, fetchurl, pkgconfig, librdf_raptor, ladspaH, openssl, zlib }:
{ stdenv, fetchurl, pkgconfig, libtool, automake, autoconf
, librdf_raptor, librdf_raptor2, ladspaH, openssl, zlib #, swh_lv2
}:
stdenv.mkDerivation {
name = "liblrdf-0.4.0";
stdenv.mkDerivation rec {
version = "0.5.0";
name = "liblrdf-${version}";
src = fetchurl {
url = mirror://sourceforge/lrdf/liblrdf/0.4.0/liblrdf-0.4.0.tar.gz;
sha256 = "015jv7pp0a0qxgljgdvf7d01nj4fx0zgzg0wayjp7v86pa38xscm";
url = "http://github.com/swh/LRDF/archive/${version}.tar.gz";
sha256 = "18p2flb2sv2hq6w2qkd29z9c7knnwqr3f12i2srshlzx6vwkm05s";
};
buildInputs = [ pkgconfig ladspaH openssl zlib ];
postPatch = "sed -i -e 's:usr/local:usr:' examples/{instances,remove}_test.c";
propagatedBuildInputs = [ librdf_raptor ];
preConfigure = "rm m4/* && autoreconf -if";
buildInputs = [
pkgconfig libtool automake autoconf ladspaH openssl zlib /*swh_lv2*/
#librdf_raptor
];
propagatedBuildInputs = [ librdf_raptor2 ];
#doCheck = true; # would need swh_lv2 and some path patching
meta = {
description = "A lightweight RDF library with special support for LADSPA plugins.";

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, libxml2, libxslt, curl }:
stdenv.mkDerivation rec {
name = "raptor2-2.0.4";
name = "raptor2-2.0.8"; # 2.0.9 misses a header and so fails liblrdf
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "0viaam60adhsxim2vaq5xs1pfmm6wiidxpkrhwyl7x9mz8x9vx1l";
sha256 = "1mz7cxnfw73saf74c9if06n2mlsvn2rnn67vy7j2mq3wkhy0hcb0";
};
buildInputs = [ libxml2 libxslt ];

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, librdf_raptor2, gmp, pkgconfig, pcre, libxml2 }:
stdenv.mkDerivation rec {
name = "rasqal-0.9.26";
name = "rasqal-0.9.30";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "1drjcy1k9g72iis0ghllzn7n0w03bahhrd2p5hs39anbm6mr0yk9";
sha256 = "1z8wifq79kivcwpwzmjnjdrbr65zam190gpxhgrvsyfch0yykw5b";
};
nativeBuildInputs = [ pkgconfig ];

View file

@ -7,11 +7,11 @@
}:
stdenv.mkDerivation rec {
name = "redland-1.0.14";
name = "redland-1.0.16";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "1i460q9gslb7l75hjwc6w2kp2wk7fgp8lr7phamg33c6j013y30k";
sha256 = "1gcx0h5dxa3c4xhhjk3gr0708zjj0n6zpslvbjfi2qbf13y798nr";
};
nativeBuildInputs = [ perl pkgconfig ];