libfpx: drop (#409063)

authored by philiptaron.tngl.sh and committed by GitHub c3f7075a 5d0f4be7

+1 -47
-47
pkgs/by-name/li/libfpx/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - fetchpatch, 6 - }: 7 - 8 - stdenv.mkDerivation rec { 9 - pname = "libfpx"; 10 - version = "1.3.1-7"; 11 - 12 - src = fetchurl { 13 - url = "mirror://imagemagick/delegates/${pname}-${version}.tar.xz"; 14 - sha256 = "1s28mwb06w6dj0zl6ashpj8m1qiyadawzl7cvbw7dmj1w39ipghh"; 15 - }; 16 - 17 - # Darwin gets misdetected as Windows without this 18 - env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-D__unix"; 19 - 20 - patches = [ 21 - (fetchpatch { 22 - url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/libfpx/files/libfpx-1.3.1_p6-gcc6.patch?id=f28a947813dbc0a1fd1a8d4a712d58a64c48ca01"; 23 - sha256 = "032y8110zgnkdhkdq3745zk53am1x34d912rai8q70k3sskyq22p"; 24 - }) 25 - # Pull upstream fix for -fno-common: 26 - # https://github.com/ImageMagick/libfpx/pull/1 27 - (fetchpatch { 28 - name = "fno-common.patch"; 29 - url = "https://github.com/ImageMagick/libfpx/commit/c32b340581ba6c88c5092f374f655c7579b598a6.patch"; 30 - sha256 = "1gbc0qb2ri1mj9r66wx0yn28fsr7zhhlyz2mwbica8wh34xijgz9"; 31 - }) 32 - # fix clang build: remove register keyword 33 - # remove on next update 34 - (fetchpatch { 35 - name = "remove-register-keyword.patch"; 36 - url = "https://github.com/ImageMagick/libfpx/commit/5f340b0a490450b40302cc9948c7dfac60d40041.patch"; 37 - hash = "sha256-6m9MFb1eWGK5cMvPmTu7uh3Pac65r2HPB8wJ8xc1O5o="; 38 - }) 39 - ]; 40 - 41 - meta = with lib; { 42 - homepage = "http://www.imagemagick.org"; 43 - description = "Library for manipulating FlashPIX images"; 44 - license = "Flashpix"; 45 - platforms = platforms.all; 46 - }; 47 - }
···
+1
pkgs/top-level/aliases.nix
··· 991 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 992 libchop = throw "libchop has been removed due to failing to build and being unmaintained upstream"; # Added 2025-05-02 993 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 994 libgadu = throw "'libgadu' has been removed as upstream is unmaintained and has no dependents or maintainers in Nixpkgs"; # Added 2025-05-17 995 libgcrypt_1_8 = throw "'libgcrypt_1_8' is end-of-life. Consider using 'libgcrypt' instead"; # Added 2025-01-05 996 libgda = lib.warnOnInstantiate "‘libgda’ has been renamed to ‘libgda5’" libgda5; # Added 2025-01-21
··· 991 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 992 libchop = throw "libchop has been removed due to failing to build and being unmaintained upstream"; # Added 2025-05-02 993 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 994 + libfpx = throw "libfpx has been removed as it was unmaintained in Nixpkgs and had known vulnerabilities"; # Added 2025-05-20 995 libgadu = throw "'libgadu' has been removed as upstream is unmaintained and has no dependents or maintainers in Nixpkgs"; # Added 2025-05-17 996 libgcrypt_1_8 = throw "'libgcrypt_1_8' is end-of-life. Consider using 'libgcrypt' instead"; # Added 2025-01-05 997 libgda = lib.warnOnInstantiate "‘libgda’ has been renamed to ‘libgda5’" libgda5; # Added 2025-01-21