mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, libxml2
|
|
, libxslt
|
|
, pkg-config
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, perl
|
|
, bison
|
|
, flex
|
|
, fetchpatch
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "raptor2";
|
|
version = "unstable-2022-06-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dajobe";
|
|
repo = "raptor";
|
|
rev = "3cca62a33da68143b687c9e486eefc7c7cbb4586";
|
|
sha256 = "sha256-h03IyFH1GHPqajfHBBTb19lCEu+VXzQLGC1wiEGVvgY=";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
# Build defaults to static libraries.
|
|
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
|
|
];
|
|
|
|
patches = [
|
|
# https://github.com/dajobe/raptor/pull/52
|
|
(fetchpatch {
|
|
name = "fix-cmake-generated-pc-file";
|
|
url = "https://github.com/dajobe/raptor/commit/fa1ef9a27d8762f5588ac2e92554a188e73dee9f.diff";
|
|
sha256 = "sha256-zXIbrYGgC9oTpiD0WUikT4vRdc9b6bsyfnDkwUSlqao=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config cmake perl bison flex ];
|
|
buildInputs = [ libxml2 libxslt ];
|
|
|
|
meta = {
|
|
description = "The RDF Parser Toolkit";
|
|
homepage = "https://librdf.org/raptor";
|
|
license = with lib.licenses; [ lgpl21 asl20 ];
|
|
maintainers = with lib.maintainers; [ marcweber ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|