librdf_raptor: drop (#398752)

This commit is contained in:
Aleksana
2025-04-16 23:49:54 +08:00
committed by GitHub
3 changed files with 1 additions and 41 deletions
@@ -1,39 +0,0 @@
{
lib,
stdenv,
fetchurl,
libxml2,
curl,
}:
stdenv.mkDerivation rec {
pname = "raptor";
version = "1.4.21";
src = fetchurl {
url = "http://download.librdf.org/source/raptor-${version}.tar.gz";
sha256 = "db3172d6f3c432623ed87d7d609161973d2f7098e3d2233d0702fbcc22cfd8ca";
};
buildInputs = [
libxml2
curl
];
preBuild = ''
sed -e '/curl\/types/d' -i src/*.c src/*.h
'';
meta = {
description = "RDF Parser Toolkit";
homepage = "https://librdf.org/raptor";
license = with lib.licenses; [
lgpl21
asl20
];
maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.linux;
# error: passing argument 2 of 'xmlSetStructuredErrorFunc' from incompatible pointer type [-Wincompatible-pointer-types]
broken = true;
};
}
+1
View File
@@ -946,6 +946,7 @@ mapAliases {
libquotient = libsForQt5.libquotient; # Added 2023-11-11
librarian-puppet-go = throw "'librarian-puppet-go' has been removed, as it's upstream is unmaintained"; # Added 2024-06-10
librdf = throw "'librdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2024-10-17
librdf_raptor = throw "librdf_raptor has been remove due to failing to build and being unmaintained"; # Added 2025-04-14
LibreArp = librearp; # Added 2024-06-12
LibreArp-lv2 = librearp-lv2; # Added 2024-06-12
libreddit = throw "'libreddit' has been removed because it is unmaintained upstream. Consider using 'redlib', a maintained fork"; # Added 2024-07-17
-2
View File
@@ -11064,8 +11064,6 @@ with pkgs;
haskellLib = haskell.lib.compose;
};
librdf_raptor = callPackage ../development/libraries/librdf/raptor.nix { };
librdf_raptor2 = callPackage ../development/libraries/librdf/raptor2.nix { };
librdf_rasqal = callPackage ../development/libraries/librdf/rasqal.nix { };