nixpkgs/pkgs/development/libraries/librdf/rasqal.nix
Ryan Mulligan 7bb9c5cbbe librdf_rasqal: 0.9.32 -> 0.9.33
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33/bin/roqet -h` got 0 exit code
- ran `/nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33/bin/roqet --help` got 0 exit code
- ran `/nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33/bin/roqet -v` and found version 0.9.33
- ran `/nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33/bin/roqet --version` and found version 0.9.33
- ran `/nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33/bin/roqet -h` and found version 0.9.33
- ran `/nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33/bin/roqet --help` and found version 0.9.33
- found 0.9.33 with grep in /nix/store/g22gwl6x47gblsjw1103d9s0db2f8q62-rasqal-0.9.33
- directory tree listing: https://gist.github.com/ed6057974e0e9e152484b22dca593388
2018-03-18 10:26:46 -07:00

27 lines
752 B
Nix

{ stdenv, fetchurl, librdf_raptor2, gmp, pkgconfig, pcre, libxml2 }:
stdenv.mkDerivation rec {
name = "rasqal-0.9.33";
src = fetchurl {
url = "http://download.librdf.org/source/${name}.tar.gz";
sha256 = "0z6rrwn4jsagvarg8d5zf0j352kjgi33py39jqd29gbhcnncj939";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gmp pcre libxml2 ];
propagatedBuildInputs = [ librdf_raptor2 ];
postInstall = "rm -rvf $out/share/gtk-doc";
meta = {
description = "Library that handles Resource Description Framework (RDF)";
homepage = http://librdf.org/rasqal;
license = with stdenv.lib.licenses; [ lgpl21 asl20 ];
maintainers = with stdenv.lib.maintainers; [ marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}