libdwg: remove

This commit is contained in:
Gavin John
2024-12-28 11:42:50 -05:00
parent 33952e2d65
commit b0cfb8abd8
2 changed files with 1 additions and 37 deletions
-37
View File
@@ -1,37 +0,0 @@
{
lib,
stdenv,
fetchurl,
indent,
}:
stdenv.mkDerivation rec {
pname = "libdwg";
version = "0.6";
src = fetchurl {
url = "mirror://sourceforge/libdwg/libdwg-${version}.tar.bz2";
sha256 = "0l8ks1x70mkna1q7mzy1fxplinz141bd24qhrm1zkdil74mcsryc";
};
nativeBuildInputs = [ indent ];
hardeningDisable = [ "format" ];
# remove forbidden references to $TMPDIR
preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
for f in "$out"/bin/*; do
if isELF "$f"; then
patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$f"
fi
done
'';
meta = {
description = "Library reading dwg files";
homepage = "http://libdwg.sourceforge.net/en/";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.linux;
};
}
+1
View File
@@ -663,6 +663,7 @@ mapAliases {
libbitcoin-explorer = throw "libbitcoin-explorer has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
libbitcoin-network = throw "libbitcoin-network has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
libbitcoin-protocol = throw "libbitcoin-protocol has been removed as it required an obsolete version of Boost and had no maintainer in Nixpkgs"; # Added 2024-11-24
libdwg = throw "libdwg has been removed as upstream is unmaintained, the code doesn't build without significant patches, and the package had no reverse dependencies"; # Added 2024-12-28
libgme = game-music-emu; # Added 2022-07-20
libgnome-keyring3 = libgnome-keyring; # Added 2024-06-22
libgpgerror = throw "'libgpgerror' has been renamed to/replaced by 'libgpg-error'"; # Converted to throw 2024-10-17