Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
c7a3c2d7 0f251451

+875 -2114
+6
lib/licenses.nix
··· 620 free = false; 621 }; 622 623 ipa = { 624 spdxId = "IPA"; 625 fullName = "IPA Font License";
··· 620 free = false; 621 }; 622 623 + inria-zelus = { 624 + fullName = "INRIA Non-Commercial License Agreement for the Zélus compiler"; 625 + url = "https://github.com/INRIA/zelus/raw/829f2b97cba93b0543a9ca0272269e6b8fdad356/LICENSE"; 626 + free = false; 627 + }; 628 + 629 ipa = { 630 spdxId = "IPA"; 631 fullName = "IPA Font License";
+3
nixos/doc/manual/release-notes/rl-2311.section.md
··· 97 98 ## Backward Incompatibilities {#sec-release-23.11-incompatibilities} 99 100 - The `boot.loader.raspberryPi` options have been marked deprecated, with intent for removal for NixOS 24.11. They had a limited use-case, and do not work like people expect. They required either very old installs ([before mid-2019](https://github.com/NixOS/nixpkgs/pull/62462)) or customized builds out of scope of the standard and generic AArch64 support. That option set never supported the Raspberry Pi 4 family of devices. 101 102 - `python3.pkgs.sequoia` was removed in favor of `python3.pkgs.pysequoia`. The latter package is based on upstream's dedicated repository for sequoia's Python bindings, where the Python bindings from [gitlab:sequoia-pgp/sequoia](https://gitlab.com/sequoia-pgp/sequoia) were removed long ago.
··· 97 98 ## Backward Incompatibilities {#sec-release-23.11-incompatibilities} 99 100 + - `network-online.target` has been fixed to no longer time out for systems with `networking.useDHCP = true` and `networking.useNetworkd = true`. 101 + Workarounds for this can be removed. 102 + 103 - The `boot.loader.raspberryPi` options have been marked deprecated, with intent for removal for NixOS 24.11. They had a limited use-case, and do not work like people expect. They required either very old installs ([before mid-2019](https://github.com/NixOS/nixpkgs/pull/62462)) or customized builds out of scope of the standard and generic AArch64 support. That option set never supported the Raspberry Pi 4 family of devices. 104 105 - `python3.pkgs.sequoia` was removed in favor of `python3.pkgs.pysequoia`. The latter package is based on upstream's dedicated repository for sequoia's Python bindings, where the Python bindings from [gitlab:sequoia-pgp/sequoia](https://gitlab.com/sequoia-pgp/sequoia) were removed long ago.
+4
nixos/lib/systemd-lib.nix
··· 80 optional (attr ? ${name} && !elem attr.${name} values) 81 "Systemd ${group} field `${name}' cannot have value `${toString attr.${name}}'."; 82 83 assertHasField = name: group: attr: 84 optional (!(attr ? ${name})) 85 "Systemd ${group} field `${name}' must exist.";
··· 80 optional (attr ? ${name} && !elem attr.${name} values) 81 "Systemd ${group} field `${name}' cannot have value `${toString attr.${name}}'."; 82 83 + assertValuesSomeOfOr = name: values: default: group: attr: 84 + optional (attr ? ${name} && !(all (x: elem x values) (splitString " " attr.${name}) || attr.${name} == default)) 85 + "Systemd ${group} field `${name}' cannot have value `${toString attr.${name}}'."; 86 + 87 assertHasField = name: group: attr: 88 optional (!(attr ? ${name})) 89 "Systemd ${group} field `${name}' must exist.";
-2
nixos/modules/profiles/installation-device.nix
··· 102 jq # for closureInfo 103 # For boot.initrd.systemd 104 makeInitrdNGTool 105 - systemdStage1 106 - systemdStage1Network 107 ]; 108 109 boot.swraid.enable = true;
··· 102 jq # for closureInfo 103 # For boot.initrd.systemd 104 makeInitrdNGTool 105 ]; 106 107 boot.swraid.enable = true;
+5 -4
nixos/modules/system/boot/networkd.nix
··· 83 (assertByteFormat "BitsPerSecond") 84 (assertValueOneOf "Duplex" ["half" "full"]) 85 (assertValueOneOf "AutoNegotiation" boolValues) 86 - (assertValueOneOf "WakeOnLan" ["phy" "unicast" "multicast" "broadcast" "arp" "magic" "secureon" "off"]) 87 (assertValueOneOf "Port" ["tp" "aui" "bnc" "mii" "fibre"]) 88 (assertValueOneOf "ReceiveChecksumOffload" boolValues) 89 (assertValueOneOf "TransmitChecksumOffload" boolValues) ··· 2724 description = lib.mdDoc '' 2725 Whether to consider the network online when any interface is online, as opposed to all of them. 2726 This is useful on portable machines with a wired and a wireless interface, for example. 2727 ''; 2728 type = types.bool; 2729 - default = false; 2730 }; 2731 2732 ignoredInterfaces = mkOption { ··· 2886 } 2887 2888 (mkIf cfg.enable { 2889 - 2890 - systemd.package = mkDefault pkgs.systemdStage1Network; 2891 2892 # For networkctl 2893 systemd.dbus.enable = mkDefault true;
··· 83 (assertByteFormat "BitsPerSecond") 84 (assertValueOneOf "Duplex" ["half" "full"]) 85 (assertValueOneOf "AutoNegotiation" boolValues) 86 + (assertValuesSomeOfOr "WakeOnLan" ["phy" "unicast" "multicast" "broadcast" "arp" "magic" "secureon"] "off") 87 (assertValueOneOf "Port" ["tp" "aui" "bnc" "mii" "fibre"]) 88 (assertValueOneOf "ReceiveChecksumOffload" boolValues) 89 (assertValueOneOf "TransmitChecksumOffload" boolValues) ··· 2724 description = lib.mdDoc '' 2725 Whether to consider the network online when any interface is online, as opposed to all of them. 2726 This is useful on portable machines with a wired and a wireless interface, for example. 2727 + 2728 + This is on by default if {option}`networking.useDHCP` is enabled. 2729 ''; 2730 type = types.bool; 2731 + defaultText = "config.networking.useDHCP"; 2732 + default = config.networking.useDHCP; 2733 }; 2734 2735 ignoredInterfaces = mkOption { ··· 2889 } 2890 2891 (mkIf cfg.enable { 2892 2893 # For networkctl 2894 systemd.dbus.enable = mkDefault true;
+7 -2
nixos/modules/system/boot/systemd/initrd.nix
··· 135 ''; 136 }; 137 138 - package = mkPackageOptionMD pkgs "systemd" { 139 - default = "systemdStage1"; 140 }; 141 142 extraConfig = mkOption {
··· 135 ''; 136 }; 137 138 + package = lib.mkOption { 139 + type = lib.types.package; 140 + default = config.systemd.package; 141 + defaultText = lib.literalExpression "config.systemd.package"; 142 + description = '' 143 + The systemd package to use. 144 + ''; 145 }; 146 147 extraConfig = mkOption {
+1 -1
nixos/modules/tasks/network-interfaces-scripted.nix
··· 62 } // optionalAttrs (i.mtu != null) { 63 MTUBytes = toString i.mtu; 64 } // optionalAttrs (i.wakeOnLan.enable == true) { 65 - WakeOnLan = "magic"; 66 }; 67 }; 68 in listToAttrs (map createNetworkLink interfaces);
··· 62 } // optionalAttrs (i.mtu != null) { 63 MTUBytes = toString i.mtu; 64 } // optionalAttrs (i.wakeOnLan.enable == true) { 65 + WakeOnLan = concatStringsSep " " i.wakeOnLan.policy; 66 }; 67 }; 68 in listToAttrs (map createNetworkLink interfaces);
-9
nixos/modules/tasks/network-interfaces-systemd.nix
··· 59 # more likely to result in interfaces being configured to 60 # use DHCP when they shouldn't. 61 62 - # When wait-online.anyInterface is enabled, RequiredForOnline really 63 - # means "sufficient for online", so we can enable it. 64 - # Otherwise, don't block the network coming online because of default networks. 65 matchConfig.Name = ["en*" "eth*"]; 66 DHCP = "yes"; 67 - linkConfig.RequiredForOnline = 68 - lib.mkDefault (if initrd 69 - then config.boot.initrd.systemd.network.wait-online.anyInterface 70 - else config.systemd.network.wait-online.anyInterface); 71 networkConfig.IPv6PrivacyExtensions = "kernel"; 72 }; 73 networks."99-wireless-client-dhcp" = { 74 # Like above, but this is much more likely to be correct. 75 matchConfig.WLANInterfaceType = "station"; 76 DHCP = "yes"; 77 - linkConfig.RequiredForOnline = 78 - lib.mkDefault config.systemd.network.wait-online.anyInterface; 79 networkConfig.IPv6PrivacyExtensions = "kernel"; 80 # We also set the route metric to one more than the default 81 # of 1024, so that Ethernet is preferred if both are
··· 59 # more likely to result in interfaces being configured to 60 # use DHCP when they shouldn't. 61 62 matchConfig.Name = ["en*" "eth*"]; 63 DHCP = "yes"; 64 networkConfig.IPv6PrivacyExtensions = "kernel"; 65 }; 66 networks."99-wireless-client-dhcp" = { 67 # Like above, but this is much more likely to be correct. 68 matchConfig.WLANInterfaceType = "station"; 69 DHCP = "yes"; 70 networkConfig.IPv6PrivacyExtensions = "kernel"; 71 # We also set the route metric to one more than the default 72 # of 1024, so that Ethernet is preferred if both are
+18
nixos/modules/tasks/network-interfaces.nix
··· 327 default = false; 328 description = lib.mdDoc "Whether to enable wol on this interface."; 329 }; 330 }; 331 }; 332
··· 327 default = false; 328 description = lib.mdDoc "Whether to enable wol on this interface."; 329 }; 330 + policy = mkOption { 331 + type = with types; listOf ( 332 + enum ["phy" "unicast" "multicast" "broadcast" "arp" "magic" "secureon"] 333 + ); 334 + default = ["magic"]; 335 + description = lib.mdDoc '' 336 + The [Wake-on-LAN policy](https://www.freedesktop.org/software/systemd/man/systemd.link.html#WakeOnLan=) 337 + to set for the device. 338 + 339 + The options are 340 + - `phy`: Wake on PHY activity 341 + - `unicast`: Wake on unicast messages 342 + - `multicast`: Wake on multicast messages 343 + - `broadcast`: Wake on broadcast messages 344 + - `arp`: Wake on ARP 345 + - `magic`: Wake on receipt of a magic packet 346 + ''; 347 + }; 348 }; 349 }; 350
+2 -1
nixos/tests/all-tests.nix
··· 825 tor = handleTest ./tor.nix {}; 826 traefik = handleTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix {}; 827 trafficserver = handleTest ./trafficserver.nix {}; 828 - transmission = handleTest ./transmission.nix {}; 829 # tracee requires bpf 830 tracee = handleTestOn ["x86_64-linux"] ./tracee.nix {}; 831 trezord = handleTest ./trezord.nix {};
··· 825 tor = handleTest ./tor.nix {}; 826 traefik = handleTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix {}; 827 trafficserver = handleTest ./trafficserver.nix {}; 828 + transmission = handleTest ./transmission.nix { transmission = pkgs.transmission; }; 829 + transmission_4 = handleTest ./transmission.nix { transmission = pkgs.transmission_4; }; 830 # tracee requires bpf 831 tracee = handleTestOn ["x86_64-linux"] ./tracee.nix {}; 832 trezord = handleTest ./trezord.nix {};
+2 -1
nixos/tests/transmission.nix
··· 1 - import ./make-test-python.nix ({ pkgs, ...} : { 2 name = "transmission"; 3 meta = with pkgs.lib.maintainers; { 4 maintainers = [ coconnor ]; ··· 12 security.apparmor.enable = true; 13 14 services.transmission.enable = true; 15 }; 16 17 testScript =
··· 1 + import ./make-test-python.nix ({ pkgs, transmission, ... }: { 2 name = "transmission"; 3 meta = with pkgs.lib.maintainers; { 4 maintainers = [ coconnor ]; ··· 12 security.apparmor.enable = true; 13 14 services.transmission.enable = true; 15 + services.transmission.package = transmission; 16 }; 17 18 testScript =
+9 -9
pkgs/applications/audio/exaile/default.nix
··· 8 , notificationSupport ? true 9 , scalableIconSupport ? true 10 , translationSupport ? true 11 - , bpmCounterSupport ? false 12 , ipythonSupport ? false 13 , lastfmSupport ? false 14 , lyricsManiaSupport ? false 15 - , lyricsWikiSupport ? false 16 , multimediaKeySupport ? false 17 , musicBrainzSupport ? false 18 , podcastSupport ? false 19 , streamripperSupport ? false 20 , wikipediaSupport ? false 21 - , fetchpatch 22 }: 23 24 stdenv.mkDerivation rec { 25 pname = "exaile"; 26 - version = "4.1.2"; 27 28 src = fetchFromGitHub { 29 owner = "exaile"; 30 repo = pname; 31 rev = version; 32 - sha256 = "sha256-GZyCuPy57NhGwgbLMrRKW5xmc1Udon7WtsrD4upviuQ="; 33 }; 34 35 nativeBuildInputs = [ ··· 49 gstreamer 50 gst-plugins-base 51 gst-plugins-good 52 ]) ++ (with python3.pkgs; [ 53 bsddb3 54 dbus-python ··· 59 ]) ++ lib.optional deviceDetectionSupport udisks 60 ++ lib.optional notificationSupport libnotify 61 ++ lib.optional scalableIconSupport librsvg 62 - ++ lib.optional bpmCounterSupport gst_all_1.gst-plugins-bad 63 ++ lib.optional ipythonSupport python3.pkgs.ipython 64 ++ lib.optional lastfmSupport python3.pkgs.pylast 65 - ++ lib.optional (lyricsManiaSupport || lyricsWikiSupport) python3.pkgs.lxml 66 - ++ lib.optional lyricsWikiSupport python3.pkgs.beautifulsoup4 67 ++ lib.optional multimediaKeySupport keybinder3 68 - ++ lib.optional musicBrainzSupport python3.pkgs.musicbrainzngs 69 ++ lib.optional podcastSupport python3.pkgs.feedparser 70 ++ lib.optional wikipediaSupport webkitgtk; 71
··· 8 , notificationSupport ? true 9 , scalableIconSupport ? true 10 , translationSupport ? true 11 , ipythonSupport ? false 12 + , cdMetadataSupport ? false 13 , lastfmSupport ? false 14 , lyricsManiaSupport ? false 15 , multimediaKeySupport ? false 16 , musicBrainzSupport ? false 17 , podcastSupport ? false 18 , streamripperSupport ? false 19 , wikipediaSupport ? false 20 }: 21 22 stdenv.mkDerivation rec { 23 pname = "exaile"; 24 + version = "4.1.3"; 25 26 src = fetchFromGitHub { 27 owner = "exaile"; 28 repo = pname; 29 rev = version; 30 + sha256 = "sha256-9SK0nvGdz2j6qp1JTmSuLezxX/kB93CZReSfAnfKZzg="; 31 }; 32 33 nativeBuildInputs = [ ··· 47 gstreamer 48 gst-plugins-base 49 gst-plugins-good 50 + gst-plugins-bad 51 + gst-plugins-ugly 52 + gst-libav 53 ]) ++ (with python3.pkgs; [ 54 bsddb3 55 dbus-python ··· 60 ]) ++ lib.optional deviceDetectionSupport udisks 61 ++ lib.optional notificationSupport libnotify 62 ++ lib.optional scalableIconSupport librsvg 63 ++ lib.optional ipythonSupport python3.pkgs.ipython 64 + ++ lib.optional cdMetadataSupport python3.pkgs.discid 65 ++ lib.optional lastfmSupport python3.pkgs.pylast 66 + ++ lib.optional lyricsManiaSupport python3.pkgs.lxml 67 ++ lib.optional multimediaKeySupport keybinder3 68 + ++ lib.optional (musicBrainzSupport || cdMetadataSupport) python3.pkgs.musicbrainzngs 69 ++ lib.optional podcastSupport python3.pkgs.feedparser 70 ++ lib.optional wikipediaSupport webkitgtk; 71
+2 -2
pkgs/applications/audio/lsp-plugins/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "lsp-plugins"; 8 - version = "1.2.10"; 9 10 src = fetchurl { 11 url = "https://github.com/sadko4u/${pname}/releases/download/${version}/${pname}-src-${version}.tar.gz"; 12 - sha256 = "sha256-2Yf+4TYGWF/AMI1kNvVOx9g6CSIoeZKY63qC/zJNilc="; 13 }; 14 15 outputs = [ "out" "dev" "doc" ];
··· 5 6 stdenv.mkDerivation rec { 7 pname = "lsp-plugins"; 8 + version = "1.2.11"; 9 10 src = fetchurl { 11 url = "https://github.com/sadko4u/${pname}/releases/download/${version}/${pname}-src-${version}.tar.gz"; 12 + sha256 = "sha256-9zLs1J7rZkMaVQxOwihjCsKSLyb9q64pTZLVg/UVf2o="; 13 }; 14 15 outputs = [ "out" "dev" "doc" ];
+6
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 1 { lib 2 , fetchFromGitHub 3 , makeWrapper 4 , mkDerivation 5 , substituteAll ··· 137 src = ./set-pyqt-package-dirs-ltr.patch; 138 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 139 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 140 }) 141 ]; 142
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchpatch 4 , makeWrapper 5 , mkDerivation 6 , substituteAll ··· 138 src = ./set-pyqt-package-dirs-ltr.patch; 139 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 140 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 141 + }) 142 + (fetchpatch { 143 + name = "qgis-3.28.9-exiv2-0.28.patch"; 144 + url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sci-geosciences/qgis/files/qgis-3.28.9-exiv2-0.28.patch?id=002882203ad6a2b08ce035a18b95844a9f4b85d0"; 145 + hash = "sha256-mPRo0A7ko4GCHJrfJ2Ls0dUKvkFtDmhKekI2CR9StMw="; 146 }) 147 ]; 148
+6
pkgs/applications/gis/qgis/unwrapped.nix
··· 1 { lib 2 , fetchFromGitHub 3 , makeWrapper 4 , mkDerivation 5 , substituteAll ··· 140 src = ./set-pyqt-package-dirs.patch; 141 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 142 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 143 }) 144 ]; 145
··· 1 { lib 2 , fetchFromGitHub 3 + , fetchpatch 4 , makeWrapper 5 , mkDerivation 6 , substituteAll ··· 141 src = ./set-pyqt-package-dirs.patch; 142 pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}"; 143 qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}"; 144 + }) 145 + (fetchpatch { 146 + name = "exiv2-0.28.patch"; 147 + url = "https://github.com/qgis/QGIS/commit/32f5418fc4f7bb2ee986dee1824ff2989c113a94.patch"; 148 + hash = "sha256-zWyf+kLro4ZyUJLX/nDjY0nLneTaI1DxHvRsvwoWq14="; 149 }) 150 ]; 151
+3
pkgs/applications/graphics/inkscape/default.nix
··· 10 , ghostscript 11 , glib 12 , glibmm 13 , gsl 14 , gspell 15 , gtk-mac-integration ··· 47 appdirs 48 beautifulsoup4 49 cachecontrol 50 numpy 51 lxml 52 packaging ··· 104 glib # for setup hook 105 gdk-pixbuf # for setup hook 106 wrapGAppsHook 107 ] ++ (with perlPackages; [ 108 perl 109 XMLParser
··· 10 , ghostscript 11 , glib 12 , glibmm 13 + , gobject-introspection 14 , gsl 15 , gspell 16 , gtk-mac-integration ··· 48 appdirs 49 beautifulsoup4 50 cachecontrol 51 + filelock 52 numpy 53 lxml 54 packaging ··· 106 glib # for setup hook 107 gdk-pixbuf # for setup hook 108 wrapGAppsHook 109 + gobject-introspection 110 ] ++ (with perlPackages; [ 111 perl 112 XMLParser
+3 -3
pkgs/applications/graphics/inkscape/extensions.nix
··· 10 11 hexmap = stdenv.mkDerivation { 12 pname = "hexmap"; 13 - version = "unstable-2020-06-06"; 14 15 src = fetchFromGitHub { 16 owner = "lifelike"; 17 repo = "hexmapextension"; 18 - rev = "11401e23889318bdefb72df6980393050299d8cc"; 19 - sha256 = "1a4jhva624mbljj2k43wzi6hrxacjz4626jfk9y2fg4r4sga22mm"; 20 }; 21 22 preferLocalBuild = true;
··· 10 11 hexmap = stdenv.mkDerivation { 12 pname = "hexmap"; 13 + version = "unstable-2023-01-26"; 14 15 src = fetchFromGitHub { 16 owner = "lifelike"; 17 repo = "hexmapextension"; 18 + rev = "241c9512d0113e8193b7cf06b69ef2c4730b0295"; 19 + hash = "sha256-pSPAupp3xLlbODE2BGu1Xiiiu1Y6D4gG4HhZwccAZ2E="; 20 }; 21 22 preferLocalBuild = true;
+2 -2
pkgs/applications/misc/gallery-dl/default.nix
··· 2 3 buildPythonApplication rec { 4 pname = "gallery-dl"; 5 - version = "1.25.8"; 6 format = "setuptools"; 7 8 src = fetchPypi { 9 inherit version; 10 pname = "gallery_dl"; 11 - sha256 = "sha256-6q2F9zSGZp0iZoBvOUIuIEqNs97hbsbzE23XJyTZUDc="; 12 }; 13 14 propagatedBuildInputs = [
··· 2 3 buildPythonApplication rec { 4 pname = "gallery-dl"; 5 + version = "1.26.0"; 6 format = "setuptools"; 7 8 src = fetchPypi { 9 inherit version; 10 pname = "gallery_dl"; 11 + sha256 = "sha256-+g4tfr7RF9rrimQcXhcz3o/Cx9xLNrTDV1Fx7XSxh7I="; 12 }; 13 14 propagatedBuildInputs = [
+2 -2
pkgs/applications/networking/cluster/arkade/default.nix
··· 7 8 buildGoModule rec { 9 pname = "arkade"; 10 - version = "0.10.7"; 11 12 src = fetchFromGitHub { 13 owner = "alexellis"; 14 repo = "arkade"; 15 rev = version; 16 - hash = "sha256-6KgQR8QIgbrI2XhORhDjcC2PK+XbmDWNBjjjE3qOAhQ="; 17 }; 18 19 CGO_ENABLED = 0;
··· 7 8 buildGoModule rec { 9 pname = "arkade"; 10 + version = "0.10.10"; 11 12 src = fetchFromGitHub { 13 owner = "alexellis"; 14 repo = "arkade"; 15 rev = version; 16 + hash = "sha256-Lu/itKaF7mSG/jwg2sA4wNkbzBWdDY4pfwHB0elI1Bc="; 17 }; 18 19 CGO_ENABLED = 0;
+2 -2
pkgs/applications/networking/cluster/kaniko/default.nix
··· 9 10 buildGoModule rec { 11 pname = "kaniko"; 12 - version = "1.15.0"; 13 14 src = fetchFromGitHub { 15 owner = "GoogleContainerTools"; 16 repo = "kaniko"; 17 rev = "v${version}"; 18 - hash = "sha256-PNAqdeB/ya3i1hRbagpfmpwS0tNRZbWBm9YIXME1HMc="; 19 }; 20 21 vendorHash = null;
··· 9 10 buildGoModule rec { 11 pname = "kaniko"; 12 + version = "1.16.0"; 13 14 src = fetchFromGitHub { 15 owner = "GoogleContainerTools"; 16 repo = "kaniko"; 17 rev = "v${version}"; 18 + hash = "sha256-PTcPlYJ0IHWNQKBJcMiotGp6GPH3qY3f6sJKgUVSTZU="; 19 }; 20 21 vendorHash = null;
+6
pkgs/applications/networking/p2p/transmission/4.nix
··· 141 EOF 142 ''; 143 144 meta = { 145 description = "A fast, easy and free BitTorrent client"; 146 longDescription = '' 147 Transmission is a BitTorrent client which features a simple interface 148 on top of a cross-platform back-end.
··· 141 EOF 142 ''; 143 144 + passthru.tests = { 145 + apparmor = nixosTests.transmission_4; # starts the service with apparmor enabled 146 + smoke-test = nixosTests.bittorrent; 147 + }; 148 + 149 meta = { 150 description = "A fast, easy and free BitTorrent client"; 151 + mainProgram = if enableQt then "transmission-qt" else if enableGTK3 then "transmission-gtk" else "transmission-cli"; 152 longDescription = '' 153 Transmission is a BitTorrent client which features a simple interface 154 on top of a cross-platform back-end.
+1
pkgs/applications/networking/p2p/transmission/default.nix
··· 129 130 meta = { 131 description = "A fast, easy and free BitTorrent client"; 132 longDescription = '' 133 Transmission is a BitTorrent client which features a simple interface 134 on top of a cross-platform back-end.
··· 129 130 meta = { 131 description = "A fast, easy and free BitTorrent client"; 132 + mainProgram = if enableQt then "transmission-qt" else if enableGTK3 then "transmission-gtk" else "transmission-cli"; 133 longDescription = '' 134 Transmission is a BitTorrent client which features a simple interface 135 on top of a cross-platform back-end.
-9
pkgs/applications/office/libreoffice/README.md
··· 1 - LibreOffice 2 - =========== 3 - 4 - To generate `src-$VARIANT/download.nix`, i.e. list of additional sources that 5 - the libreoffice build process needs to download: 6 - 7 - nix-shell gen-shell.nix --argstr variant VARIANT --run generate 8 - 9 - Where VARIANT is either `still` or `fresh`.
···
+181 -170
pkgs/applications/office/libreoffice/default.nix
··· 1 { stdenv 2 , fetchurl 3 - , fetchpatch 4 , lib 5 , substituteAll 6 , pam ··· 100 , langs ? [ "ar" "ca" "cs" "da" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "ja" "nl" "pl" "pt" "pt-BR" "ro" "ru" "sl" "tr" "uk" "zh-CN" ] 101 , withHelp ? true 102 , kdeIntegration ? false 103 - , mkDerivation ? null 104 , qtbase ? null 105 , qtx11extras ? null 106 , qtwayland ? null ··· 145 }; 146 147 importVariant = f: import (./. + "/src-${variant}/${f}"); 148 - 149 - primary-src = importVariant "primary.nix" { inherit fetchurl; }; 150 - 151 - inherit (primary-src) major minor version; 152 - 153 - langsSpaces = concatStringsSep " " langs; 154 - 155 - mkDrv = if kdeIntegration then mkDerivation else stdenv.mkDerivation; 156 - 157 srcs = { 158 - primary = primary-src; 159 - third_party = 160 - map (x: ((fetchurl { inherit (x) url sha256 name; }) // { inherit (x) md5name md5; })) 161 - (importVariant "download.nix" ++ [ 162 - (rec { 163 - name = "unowinreg.dll"; 164 - url = "https://dev-www.libreoffice.org/extern/${md5name}"; 165 - sha256 = "1infwvv1p6i21scywrldsxs22f62x85mns4iq8h6vr6vlx3fdzga"; 166 - md5 = "185d60944ea767075d27247c3162b3bc"; 167 - md5name = "${md5}-${name}"; 168 - }) 169 - ]); 170 - 171 - translations = primary-src.translations; 172 - help = primary-src.help; 173 }; 174 175 # See `postPatch` for details ··· 185 kwindowsystem 186 ]); 187 }; 188 189 - in 190 - (mkDrv rec { 191 pname = "libreoffice"; 192 inherit version; 193 - 194 - inherit (primary-src) src; 195 196 env.NIX_CFLAGS_COMPILE = toString ([ 197 "-I${librdf_rasqal}/include/rasqal" # librdf_redland refers to rasqal.h instead of rasqal/rasqal.h ··· 200 "-O2" # https://bugs.gentoo.org/727188 201 ]); 202 203 - tarballPath = "external/tarballs"; 204 - 205 postUnpack = '' 206 mkdir -v $sourceRoot/${tarballPath} 207 '' + (flip concatMapStrings srcs.third_party (f: '' ··· 215 tar -xf ${srcs.translations} 216 ''; 217 218 - # Remove build config to reduce the amount of `-dev` outputs in the 219 - # runtime closure. This was introduced in upstream commit 220 - # cbfac11330882c7d0a817b6c37a08b2ace2b66f4, so the patch doesn't apply 221 - # for 7.4. 222 - patches = lib.optionals (lib.versionAtLeast version "7.5") [ 223 ./0001-Strip-away-BUILDCONFIG.patch 224 - ] ++ [ 225 - (fetchpatch { 226 - name = "fix-curl-8.2.patch"; 227 - url = "https://github.com/LibreOffice/core/commit/2a68dc02bd19a717d3c86873206fabed1098f228.diff"; 228 - hash = "sha256-C+kts+oaLR3+GbnX/wrFguF7SzgerNataxP0SPxhyY8="; 229 - }) 230 ]; 231 232 # libreoffice tries to reference the BUILDCONFIG (e.g. PKG_CONFIG_PATH) ··· 236 disallowedRequisites = lib.optionals (!kdeIntegration) 237 (lib.concatMap 238 (x: lib.optional (x?dev) x.dev) 239 - buildInputs); 240 241 - ### QT/KDE 242 - # 243 - # configure.ac assumes that the first directory that contains headers and 244 - # libraries during its checks contains *all* the relevant headers/libs which 245 - # obviously doesn't work for us, so we have 2 options: 246 - # 247 - # 1. patch configure.ac in order to specify the direct paths to various Qt/KDE 248 - # dependencies which is ugly and brittle, or 249 - # 250 - # 2. use symlinkJoin to pull in the relevant dependencies and just patch in 251 - # that path which is *also* ugly, but far less likely to break 252 - # 253 - # The 2nd option is not very Nix'y, but I'll take robust over nice any day. 254 - # Additionally, it's much easier to fix if LO breaks on the next upgrade (just 255 - # add the missing dependencies to it). 256 postPatch = '' 257 - substituteInPlace shell/source/unix/exec/shellexec.cxx \ 258 - --replace xdg-open ${if kdeIntegration then "kde-open5" else "xdg-open"} 259 - 260 # configure checks for header 'gpgme++/gpgmepp_version.h', 261 # and if it is found (no matter where) uses a hardcoded path 262 # in what presumably is an effort to make it possible to write ··· 267 'GPGMEPP_CFLAGS=-I/usr/include/gpgme++' \ 268 'GPGMEPP_CFLAGS=-I${gpgme.dev}/include/gpgme++' 269 '' + optionalString kdeIntegration '' 270 substituteInPlace configure.ac \ 271 --replace '$QT5INC ' '$QT5INC ${kdeDeps}/include ' \ 272 --replace '$QT5LIB ' '$QT5LIB ${kdeDeps}/lib ' \ ··· 280 preConfigure = '' 281 configureFlagsArray=( 282 "--with-parallelism=$NIX_BUILD_CORES" 283 - "--with-lang=${langsSpaces}" 284 ); 285 286 chmod a+x ./bin/unpack-sources ··· 294 NOCONFIGURE=1 ./autogen.sh 295 ''; 296 297 - postConfigure = 298 # fetch_Download_item tries to interpret the name as a variable name, let it do so... 299 - '' 300 - sed -e '1ilibreoffice-translations-${version}.tar.xz=libreoffice-translations-${version}.tar.xz' -i Makefile 301 - sed -e '1ilibreoffice-help-${version}.tar.xz=libreoffice-help-${version}.tar.xz' -i Makefile 302 - '' 303 - # Test fixups 304 - # May need to be revisited/pruned, left alone for now. 305 - + '' 306 - # unit test sd_tiledrendering seems to be fragile 307 - # https://nabble.documentfoundation.org/libreoffice-5-0-failure-in-CUT-libreofficekit-tiledrendering-td4150319.html 308 - echo > ./sd/CppunitTest_sd_tiledrendering.mk 309 - sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk 310 - # Pivot chart tests. Fragile. 311 - sed -e '/CPPUNIT_TEST(testRoundtrip)/d' -i chart2/qa/extras/PivotChartTest.cxx 312 - sed -e '/CPPUNIT_TEST(testPivotTableMedianODS)/d' -i sc/qa/unit/pivottable_filters_test.cxx 313 - # one more fragile test? 314 - sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx 315 - # this I actually hate, this should be a data consistency test! 316 - sed -e '/CPPUNIT_TEST(testTdf115013);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx 317 - # rendering-dependent test 318 - # tilde expansion in path processing checks the existence of $HOME 319 - sed -e 's@OString sSysPath("~/tmp");@& return ; @' -i sal/qa/osl/file/osl_File.cxx 320 - # fails on systems using ZFS, see https://github.com/NixOS/nixpkgs/issues/19071 321 - sed -e '/CPPUNIT_TEST(getSystemPathFromFileURL_005);/d' -i './sal/qa/osl/file/osl_File.cxx' 322 - # rendering-dependent: on my computer the test table actually doesn't fit… 323 - # interesting fact: test disabled on macOS by upstream 324 - sed -re '/DECLARE_WW8EXPORT_TEST[(]testTableKeep, "tdf91083.odt"[)]/,+5d' -i ./sw/qa/extras/ww8export/ww8export.cxx 325 - # Segfault on DB access — maybe temporarily acceptable for a new version of Fresh? 326 - sed -e 's/CppunitTest_dbaccess_empty_stdlib_save//' -i ./dbaccess/Module_dbaccess.mk 327 - # one more fragile test? 328 - sed -e '/CPPUNIT_TEST(testTdf77014);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx 329 - # rendering-dependent tests 330 - sed -e '/CPPUNIT_TEST(testLegacyCellAnchoredRotatedShape)/d' -i sc/qa/unit/filters-test.cxx 331 - sed -zre 's/DesktopLOKTest::testGetFontSubset[^{]*[{]/& return; /' -i desktop/qa/desktop_lib/test_desktop_lib.cxx 332 - sed -z -r -e 's/DECLARE_OOXMLEXPORT_TEST[(]testFlipAndRotateCustomShape,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 333 - sed -z -r -e 's/DECLARE_OOXMLEXPORT_TEST[(]tdf105490_negativeMargins,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 334 - sed -z -r -e 's/DECLARE_OOXMLIMPORT_TEST[(]testTdf112443,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlimport/ooxmlimport.cxx 335 - sed -z -r -e 's/DECLARE_RTFIMPORT_TEST[(]testTdf108947,[^)]*[)].[{]/& return;/' -i sw/qa/extras/rtfimport/rtfimport.cxx 336 - # not sure about this fragile test 337 - sed -z -r -e 's/DECLARE_OOXMLEXPORT_TEST[(]testTDF87348,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 338 - # bunch of new Fresh failures. Sigh. 339 - sed -e '/CPPUNIT_TEST(testDocumentLayout);/d' -i './sd/qa/unit/import-tests.cxx' 340 - sed -e '/CPPUNIT_TEST(testErrorBarDataRangeODS);/d' -i './chart2/qa/extras/chart2export.cxx' 341 - sed -e '/CPPUNIT_TEST(testLabelStringODS);/d' -i './chart2/qa/extras/chart2export.cxx' 342 - sed -e '/CPPUNIT_TEST(testAxisNumberFormatODS);/d' -i './chart2/qa/extras/chart2export.cxx' 343 - sed -e '/CPPUNIT_TEST(testBackgroundImage);/d' -i './sd/qa/unit/export-tests.cxx' 344 - sed -e '/CPPUNIT_TEST(testFdo84043);/d' -i './sd/qa/unit/export-tests.cxx' 345 - sed -e '/CPPUNIT_TEST(testTdf97630);/d' -i './sd/qa/unit/export-tests.cxx' 346 - sed -e '/CPPUNIT_TEST(testTdf80020);/d' -i './sd/qa/unit/export-tests.cxx' 347 - sed -e '/CPPUNIT_TEST(testTdf62176);/d' -i './sd/qa/unit/export-tests.cxx' 348 - sed -e '/CPPUNIT_TEST(testTransparentBackground);/d' -i './sd/qa/unit/export-tests.cxx' 349 - sed -e '/CPPUNIT_TEST(testEmbeddedPdf);/d' -i './sd/qa/unit/export-tests.cxx' 350 - sed -e '/CPPUNIT_TEST(testEmbeddedText);/d' -i './sd/qa/unit/export-tests.cxx' 351 - sed -e '/CPPUNIT_TEST(testTdf98477);/d' -i './sd/qa/unit/export-tests.cxx' 352 - sed -e '/CPPUNIT_TEST(testAuthorField);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 353 - sed -e '/CPPUNIT_TEST(testTdf50499);/d' -i './sd/qa/unit/export-tests.cxx' 354 - sed -e '/CPPUNIT_TEST(testTdf100926);/d' -i './sd/qa/unit/export-tests.cxx' 355 - sed -e '/CPPUNIT_TEST(testPageWithTransparentBackground);/d' -i './sd/qa/unit/export-tests.cxx' 356 - sed -e '/CPPUNIT_TEST(testTextRotation);/d' -i './sd/qa/unit/export-tests.cxx' 357 - sed -e '/CPPUNIT_TEST(testTdf113818);/d' -i './sd/qa/unit/export-tests.cxx' 358 - sed -e '/CPPUNIT_TEST(testTdf119629);/d' -i './sd/qa/unit/export-tests.cxx' 359 - sed -e '/CPPUNIT_TEST(testTdf113822);/d' -i './sd/qa/unit/export-tests.cxx' 360 - sed -e '/CPPUNIT_TEST(testTdf105739);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 361 - sed -e '/CPPUNIT_TEST(testPageBitmapWithTransparency);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 362 - sed -e '/CPPUNIT_TEST(testTdf115005);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 363 - sed -e '/CPPUNIT_TEST(testTdf115005_FallBack_Images_On);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 364 - sed -e '/CPPUNIT_TEST(testTdf115005_FallBack_Images_Off);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 365 - sed -e '/CPPUNIT_TEST(testTdf44774);/d' -i './sd/qa/unit/misc-tests.cxx' 366 - sed -e '/CPPUNIT_TEST(testTdf38225);/d' -i './sd/qa/unit/misc-tests.cxx' 367 - sed -e '/CPPUNIT_TEST(testAuthorField);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 368 - sed -e '/CPPUNIT_TEST(testAuthorField);/d' -i './sd/qa/unit/export-tests.cxx' 369 - sed -e '/CPPUNIT_TEST(testFdo85554);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 370 - sed -e '/CPPUNIT_TEST(testEmbeddedDataSource);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 371 - sed -e '/CPPUNIT_TEST(testTdf96479);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 372 - sed -e '/CPPUNIT_TEST(testInconsistentBookmark);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 373 - sed -e /CppunitTest_sw_layoutwriter/d -i sw/Module_sw.mk 374 - sed -e /CppunitTest_sw_htmlimport/d -i sw/Module_sw.mk 375 - sed -e /CppunitTest_sw_core_layout/d -i sw/Module_sw.mk 376 - sed -e /CppunitTest_sw_uiwriter6/d -i sw/Module_sw.mk 377 - sed -e /CppunitTest_sdext_pdfimport/d -i sdext/Module_sdext.mk 378 - sed -e /CppunitTest_vcl_pdfexport/d -i vcl/Module_vcl.mk 379 - sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/ooxmlexport/ooxmlexport9.cxx" 380 - sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/ooxmlexport/ooxmlencryption.cxx" 381 - sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/odfexport/odfexport.cxx" 382 - sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/unowriter/unowriter.cxx" 383 384 - # testReqIfTable fails since libxml2: 2.10.3 -> 2.10.4 385 - sed -e 's@.*"/html/body/div/table/tr/th".*@//&@' -i sw/qa/extras/htmlexport/htmlexport.cxx 386 - '' 387 - # This to avoid using /lib:/usr/lib at linking 388 - + '' 389 - sed -i '/gb_LinkTarget_LDFLAGS/{ n; /rpath-link/d;}' solenv/gbuild/platform/unxgcc.mk 390 391 - find -name "*.cmd" -exec sed -i s,/lib:/usr/lib,, {} \; 392 - ''; 393 394 makeFlags = [ "SHELL=${bash}/bin/bash" ]; 395 ··· 406 407 cp -r sysui/desktop/icons "$out/share" 408 sed -re 's@Icon=libreoffice(dev)?[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop 409 - 410 - # Install dolphin templates, like debian does 411 - install -D extras/source/shellnew/soffice.* --target-directory="$out/share/templates/.source" 412 - cp ${substituteAll {src = ./soffice-template.desktop; app="Writer"; ext="odt"; type="text"; }} $out/share/templates/soffice.odt.desktop 413 - cp ${substituteAll {src = ./soffice-template.desktop; app="Calc"; ext="ods"; type="spreadsheet"; }} $out/share/templates/soffice.ods.desktop 414 - cp ${substituteAll {src = ./soffice-template.desktop; app="Impress"; ext="odp"; type="presentation";}} $out/share/templates/soffice.odp.desktop 415 - cp ${substituteAll {src = ./soffice-template.desktop; app="Draw"; ext="odg"; type="drawing"; }} $out/share/templates/soffice.odg.desktop 416 ''; 417 418 # Wrapping is done in ./wrapper.nix ··· 475 "--without-system-libqxp" 476 "--without-system-dragonbox" 477 "--without-system-libfixmath" 478 "--with-system-mdds" 479 # https://github.com/NixOS/nixpkgs/commit/5c5362427a3fa9aefccfca9e531492a8735d4e6f 480 "--without-system-orcus" 481 "--without-system-xmlsec" 482 - "--without-system-cuckoo" 483 "--without-system-zxing" 484 ] ++ optionals kdeIntegration [ 485 "--enable-kf5" 486 "--enable-qt5" 487 "--enable-gtk3-kde5" 488 ]; 489 490 checkTarget = concatStringsSep " " [ ··· 501 jdk17 502 libtool 503 pkg-config 504 ]; 505 506 - buildInputs = with xorg; [ 507 ArchiveZip 508 CoinMP 509 IOCompress ··· 572 libxshmfence 573 libxslt 574 libzmf 575 mdds 576 mythes 577 ncurses ··· 592 which 593 zip 594 zlib 595 - ] 596 - ++ passthru.gst_packages 597 - ++ optionals kdeIntegration [ qtbase qtx11extras kcoreaddons kio ] 598 - ++ optionals (lib.versionAtLeast (lib.versions.majorMinor version) "7.4") [ libwebp ]; 599 600 passthru = { 601 inherit srcs; 602 jdk = jre'; 603 inherit kdeIntegration; 604 # For the wrapper.nix 605 inherit gtk3; ··· 656 maintainers = with maintainers; [ raskin ]; 657 platforms = platforms.linux; 658 }; 659 - }).overrideAttrs ((importVariant "override.nix") (args // { inherit kdeIntegration; }))
··· 1 { stdenv 2 , fetchurl 3 , lib 4 , substituteAll 5 , pam ··· 99 , langs ? [ "ar" "ca" "cs" "da" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "ja" "nl" "pl" "pt" "pt-BR" "ro" "ru" "sl" "tr" "uk" "zh-CN" ] 100 , withHelp ? true 101 , kdeIntegration ? false 102 + , wrapQtAppsHook ? null 103 , qtbase ? null 104 , qtx11extras ? null 105 , qtwayland ? null ··· 144 }; 145 146 importVariant = f: import (./. + "/src-${variant}/${f}"); 147 + # Update these files with: 148 + # nix-shell maintainers/scripts/update.nix --argstr package libreoffice-$VARIANT.unwrapped 149 + version = importVariant "version.nix"; 150 + srcsAttributes = { 151 + main = importVariant "main.nix"; 152 + help = importVariant "help.nix"; 153 + translations = importVariant "translations.nix"; 154 + deps = (importVariant "deps.nix") ++ [ 155 + # TODO: Why is this needed? 156 + (rec { 157 + name = "unowinreg.dll"; 158 + url = "https://dev-www.libreoffice.org/extern/${md5name}"; 159 + sha256 = "1infwvv1p6i21scywrldsxs22f62x85mns4iq8h6vr6vlx3fdzga"; 160 + md5 = "185d60944ea767075d27247c3162b3bc"; 161 + md5name = "${md5}-${name}"; 162 + }) 163 + ]; 164 + }; 165 srcs = { 166 + third_party = map (x: 167 + (fetchurl { 168 + inherit (x) url sha256 name; 169 + }) // { 170 + inherit (x) md5name md5; 171 + }) srcsAttributes.deps; 172 + translations = fetchurl srcsAttributes.translations; 173 + help = fetchurl srcsAttributes.help; 174 }; 175 176 # See `postPatch` for details ··· 186 kwindowsystem 187 ]); 188 }; 189 + tarballPath = "external/tarballs"; 190 191 + in stdenv.mkDerivation (finalAttrs: { 192 pname = "libreoffice"; 193 inherit version; 194 + src = fetchurl srcsAttributes.main; 195 196 env.NIX_CFLAGS_COMPILE = toString ([ 197 "-I${librdf_rasqal}/include/rasqal" # librdf_redland refers to rasqal.h instead of rasqal/rasqal.h ··· 200 "-O2" # https://bugs.gentoo.org/727188 201 ]); 202 203 postUnpack = '' 204 mkdir -v $sourceRoot/${tarballPath} 205 '' + (flip concatMapStrings srcs.third_party (f: '' ··· 213 tar -xf ${srcs.translations} 214 ''; 215 216 + patches = [ 217 + # Remove build config to reduce the amount of `-dev` outputs in the 218 + # runtime closure. This behavior was introduced by upstream in commit 219 + # cbfac11330882c7d0a817b6c37a08b2ace2b66f4 220 ./0001-Strip-away-BUILDCONFIG.patch 221 ]; 222 223 # libreoffice tries to reference the BUILDCONFIG (e.g. PKG_CONFIG_PATH) ··· 227 disallowedRequisites = lib.optionals (!kdeIntegration) 228 (lib.concatMap 229 (x: lib.optional (x?dev) x.dev) 230 + finalAttrs.buildInputs); 231 232 postPatch = '' 233 # configure checks for header 'gpgme++/gpgmepp_version.h', 234 # and if it is found (no matter where) uses a hardcoded path 235 # in what presumably is an effort to make it possible to write ··· 240 'GPGMEPP_CFLAGS=-I/usr/include/gpgme++' \ 241 'GPGMEPP_CFLAGS=-I${gpgme.dev}/include/gpgme++' 242 '' + optionalString kdeIntegration '' 243 + substituteInPlace shell/source/unix/exec/shellexec.cxx \ 244 + --replace xdg-open kde-open5 245 + # configure.ac assumes that the first directory that contains headers and 246 + # libraries during its checks contains *all* the relevant headers/libs which 247 + # obviously doesn't work for us, so we have 2 options: 248 + # 249 + # 1. patch configure.ac in order to specify the direct paths to various Qt/KDE 250 + # dependencies which is ugly and brittle, or 251 + # 252 + # 2. use symlinkJoin to pull in the relevant dependencies and just patch in 253 + # that path which is *also* ugly, but far less likely to break 254 + # 255 + # The 2nd option is not very Nix'y, but I'll take robust over nice any day. 256 + # Additionally, it's much easier to fix if LO breaks on the next upgrade (just 257 + # add the missing dependencies to it). 258 substituteInPlace configure.ac \ 259 --replace '$QT5INC ' '$QT5INC ${kdeDeps}/include ' \ 260 --replace '$QT5LIB ' '$QT5LIB ${kdeDeps}/lib ' \ ··· 268 preConfigure = '' 269 configureFlagsArray=( 270 "--with-parallelism=$NIX_BUILD_CORES" 271 + "--with-lang=${concatStringsSep " " langs}" 272 ); 273 274 chmod a+x ./bin/unpack-sources ··· 282 NOCONFIGURE=1 ./autogen.sh 283 ''; 284 285 + postConfigure = '' 286 # fetch_Download_item tries to interpret the name as a variable name, let it do so... 287 + sed -e '1ilibreoffice-translations-${version}.tar.xz=libreoffice-translations-${version}.tar.xz' -i Makefile 288 + sed -e '1ilibreoffice-help-${version}.tar.xz=libreoffice-help-${version}.tar.xz' -i Makefile 289 + '' /* Test fixups. May need to be revisited/pruned, left alone for now. */ + '' 290 + # unit test sd_tiledrendering seems to be fragile 291 + # https://nabble.documentfoundation.org/libreoffice-5-0-failure-in-CUT-libreofficekit-tiledrendering-td4150319.html 292 + echo > ./sd/CppunitTest_sd_tiledrendering.mk 293 + sed -e /CppunitTest_sd_tiledrendering/d -i sd/Module_sd.mk 294 + # Pivot chart tests. Fragile. 295 + sed -e '/CPPUNIT_TEST(testRoundtrip)/d' -i chart2/qa/extras/PivotChartTest.cxx 296 + sed -e '/CPPUNIT_TEST(testPivotTableMedianODS)/d' -i sc/qa/unit/pivottable_filters_test.cxx 297 + # one more fragile test? 298 + sed -e '/CPPUNIT_TEST(testTdf96536);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx 299 + # this I actually hate, this should be a data consistency test! 300 + sed -e '/CPPUNIT_TEST(testTdf115013);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx 301 + # rendering-dependent test 302 + # tilde expansion in path processing checks the existence of $HOME 303 + sed -e 's@OString sSysPath("~/tmp");@& return ; @' -i sal/qa/osl/file/osl_File.cxx 304 + # fails on systems using ZFS, see https://github.com/NixOS/nixpkgs/issues/19071 305 + sed -e '/CPPUNIT_TEST(getSystemPathFromFileURL_005);/d' -i './sal/qa/osl/file/osl_File.cxx' 306 + # rendering-dependent: on my computer the test table actually doesn't fit… 307 + # interesting fact: test disabled on macOS by upstream 308 + sed -re '/DECLARE_WW8EXPORT_TEST[(]testTableKeep, "tdf91083.odt"[)]/,+5d' -i ./sw/qa/extras/ww8export/ww8export.cxx 309 + # Segfault on DB access — maybe temporarily acceptable for a new version of Fresh? 310 + sed -e 's/CppunitTest_dbaccess_empty_stdlib_save//' -i ./dbaccess/Module_dbaccess.mk 311 + # one more fragile test? 312 + sed -e '/CPPUNIT_TEST(testTdf77014);/d' -i sw/qa/extras/uiwriter/uiwriter.cxx 313 + # rendering-dependent tests 314 + sed -e '/CPPUNIT_TEST(testLegacyCellAnchoredRotatedShape)/d' -i sc/qa/unit/filters-test.cxx 315 + sed -zre 's/DesktopLOKTest::testGetFontSubset[^{]*[{]/& return; /' -i desktop/qa/desktop_lib/test_desktop_lib.cxx 316 + sed -z -r -e 's/DECLARE_OOXMLEXPORT_TEST[(]testFlipAndRotateCustomShape,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 317 + sed -z -r -e 's/DECLARE_OOXMLEXPORT_TEST[(]tdf105490_negativeMargins,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlexport/ooxmlexport9.cxx 318 + sed -z -r -e 's/DECLARE_OOXMLIMPORT_TEST[(]testTdf112443,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlimport/ooxmlimport.cxx 319 + sed -z -r -e 's/DECLARE_RTFIMPORT_TEST[(]testTdf108947,[^)]*[)].[{]/& return;/' -i sw/qa/extras/rtfimport/rtfimport.cxx 320 + # not sure about this fragile test 321 + sed -z -r -e 's/DECLARE_OOXMLEXPORT_TEST[(]testTDF87348,[^)]*[)].[{]/& return;/' -i sw/qa/extras/ooxmlexport/ooxmlexport7.cxx 322 + # bunch of new Fresh failures. Sigh. 323 + sed -e '/CPPUNIT_TEST(testDocumentLayout);/d' -i './sd/qa/unit/import-tests.cxx' 324 + sed -e '/CPPUNIT_TEST(testErrorBarDataRangeODS);/d' -i './chart2/qa/extras/chart2export.cxx' 325 + sed -e '/CPPUNIT_TEST(testLabelStringODS);/d' -i './chart2/qa/extras/chart2export.cxx' 326 + sed -e '/CPPUNIT_TEST(testAxisNumberFormatODS);/d' -i './chart2/qa/extras/chart2export.cxx' 327 + sed -e '/CPPUNIT_TEST(testBackgroundImage);/d' -i './sd/qa/unit/export-tests.cxx' 328 + sed -e '/CPPUNIT_TEST(testFdo84043);/d' -i './sd/qa/unit/export-tests.cxx' 329 + sed -e '/CPPUNIT_TEST(testTdf97630);/d' -i './sd/qa/unit/export-tests.cxx' 330 + sed -e '/CPPUNIT_TEST(testTdf80020);/d' -i './sd/qa/unit/export-tests.cxx' 331 + sed -e '/CPPUNIT_TEST(testTdf62176);/d' -i './sd/qa/unit/export-tests.cxx' 332 + sed -e '/CPPUNIT_TEST(testTransparentBackground);/d' -i './sd/qa/unit/export-tests.cxx' 333 + sed -e '/CPPUNIT_TEST(testEmbeddedPdf);/d' -i './sd/qa/unit/export-tests.cxx' 334 + sed -e '/CPPUNIT_TEST(testEmbeddedText);/d' -i './sd/qa/unit/export-tests.cxx' 335 + sed -e '/CPPUNIT_TEST(testTdf98477);/d' -i './sd/qa/unit/export-tests.cxx' 336 + sed -e '/CPPUNIT_TEST(testAuthorField);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 337 + sed -e '/CPPUNIT_TEST(testTdf50499);/d' -i './sd/qa/unit/export-tests.cxx' 338 + sed -e '/CPPUNIT_TEST(testTdf100926);/d' -i './sd/qa/unit/export-tests.cxx' 339 + sed -e '/CPPUNIT_TEST(testPageWithTransparentBackground);/d' -i './sd/qa/unit/export-tests.cxx' 340 + sed -e '/CPPUNIT_TEST(testTextRotation);/d' -i './sd/qa/unit/export-tests.cxx' 341 + sed -e '/CPPUNIT_TEST(testTdf113818);/d' -i './sd/qa/unit/export-tests.cxx' 342 + sed -e '/CPPUNIT_TEST(testTdf119629);/d' -i './sd/qa/unit/export-tests.cxx' 343 + sed -e '/CPPUNIT_TEST(testTdf113822);/d' -i './sd/qa/unit/export-tests.cxx' 344 + sed -e '/CPPUNIT_TEST(testTdf105739);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 345 + sed -e '/CPPUNIT_TEST(testPageBitmapWithTransparency);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 346 + sed -e '/CPPUNIT_TEST(testTdf115005);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 347 + sed -e '/CPPUNIT_TEST(testTdf115005_FallBack_Images_On);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 348 + sed -e '/CPPUNIT_TEST(testTdf115005_FallBack_Images_Off);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 349 + sed -e '/CPPUNIT_TEST(testTdf44774);/d' -i './sd/qa/unit/misc-tests.cxx' 350 + sed -e '/CPPUNIT_TEST(testTdf38225);/d' -i './sd/qa/unit/misc-tests.cxx' 351 + sed -e '/CPPUNIT_TEST(testAuthorField);/d' -i './sd/qa/unit/export-tests-ooxml2.cxx' 352 + sed -e '/CPPUNIT_TEST(testAuthorField);/d' -i './sd/qa/unit/export-tests.cxx' 353 + sed -e '/CPPUNIT_TEST(testFdo85554);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 354 + sed -e '/CPPUNIT_TEST(testEmbeddedDataSource);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 355 + sed -e '/CPPUNIT_TEST(testTdf96479);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 356 + sed -e '/CPPUNIT_TEST(testInconsistentBookmark);/d' -i './sw/qa/extras/uiwriter/uiwriter.cxx' 357 + sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx' 358 + sed -e /CppunitTest_sw_layoutwriter/d -i sw/Module_sw.mk 359 + sed -e /CppunitTest_sw_htmlimport/d -i sw/Module_sw.mk 360 + sed -e /CppunitTest_sw_core_layout/d -i sw/Module_sw.mk 361 + sed -e /CppunitTest_sw_uiwriter6/d -i sw/Module_sw.mk 362 + sed -e /CppunitTest_sdext_pdfimport/d -i sdext/Module_sdext.mk 363 + sed -e /CppunitTest_vcl_pdfexport/d -i vcl/Module_vcl.mk 364 + sed -e /CppunitTest_sc_ucalc_formula/d -i sc/Module_sc.mk 365 + sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/ooxmlexport/ooxmlexport9.cxx" 366 + sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/ooxmlexport/ooxmlencryption.cxx" 367 + sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/odfexport/odfexport.cxx" 368 + sed -e "s/DECLARE_SW_ROUNDTRIP_TEST(\([_a-zA-Z0-9.]\+\)[, ].*, *\([_a-zA-Z0-9.]\+\))/class \\1: public \\2 { public: void verify() override; }; void \\1::verify() /" -i "sw/qa/extras/unowriter/unowriter.cxx" 369 + 370 + sed -e '/CPPUNIT_ASSERT(!bRTL);/d' -i './vcl/qa/cppunit/text.cxx' 371 + sed -e '/CPPUNIT_ASSERT_EQUAL(0, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 372 + sed -e '/CPPUNIT_ASSERT_EQUAL(4, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 373 + sed -e '/CPPUNIT_ASSERT_EQUAL(11, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 374 + sed -e '/CPPUNIT_ASSERT_EQUAL(18, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 375 + sed -e '/CPPUNIT_ASSERT_EQUAL(3, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 376 + sed -e '/CPPUNIT_ASSERT_EQUAL(9, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 377 + sed -e '/CPPUNIT_ASSERT_EQUAL(17, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 378 + sed -e '/CPPUNIT_ASSERT_EQUAL(22, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 379 380 + # testReqIfTable fails since libxml2: 2.10.3 -> 2.10.4 381 + sed -e 's@.*"/html/body/div/table/tr/th".*@//&@' -i sw/qa/extras/htmlexport/htmlexport.cxx 382 + '' /* This to avoid using /lib:/usr/lib at linking */ + '' 383 + sed -i '/gb_LinkTarget_LDFLAGS/{ n; /rpath-link/d;}' solenv/gbuild/platform/unxgcc.mk 384 385 + find -name "*.cmd" -exec sed -i s,/lib:/usr/lib,, {} \; 386 + '' + optionalString stdenv.isAarch64 '' 387 + sed -e '/CPPUNIT_TEST(testStatisticalFormulasFODS);/d' -i './sc/qa/unit/functions_statistical.cxx' 388 + ''; 389 390 makeFlags = [ "SHELL=${bash}/bin/bash" ]; 391 ··· 402 403 cp -r sysui/desktop/icons "$out/share" 404 sed -re 's@Icon=libreoffice(dev)?[0-9.]*-?@Icon=@' -i "$out/share/applications/"*.desktop 405 ''; 406 407 # Wrapping is done in ./wrapper.nix ··· 464 "--without-system-libqxp" 465 "--without-system-dragonbox" 466 "--without-system-libfixmath" 467 + # the "still" variant doesn't support Nixpkgs' mdds 2.1, only mdds 2.0 468 + ] ++ optionals (variant == "still") [ 469 + "--without-system-mdds" 470 + ] ++ optionals (variant == "fresh") [ 471 "--with-system-mdds" 472 + ] ++ [ 473 # https://github.com/NixOS/nixpkgs/commit/5c5362427a3fa9aefccfca9e531492a8735d4e6f 474 "--without-system-orcus" 475 "--without-system-xmlsec" 476 "--without-system-zxing" 477 ] ++ optionals kdeIntegration [ 478 "--enable-kf5" 479 "--enable-qt5" 480 "--enable-gtk3-kde5" 481 + ] ++ optionals (variant == "fresh") [ 482 + "--without-system-dragonbox" 483 + "--without-system-libfixmath" 484 + # Technically needed only when kdeIntegration is enabled in the "fresh" 485 + # variant. Won't hurt to put it here for every "fresh" variant. 486 + "--without-system-frozen" 487 ]; 488 489 checkTarget = concatStringsSep " " [ ··· 500 jdk17 501 libtool 502 pkg-config 503 + ] ++ optionals kdeIntegration [ 504 + wrapQtAppsHook 505 ]; 506 507 + buildInputs = with xorg; finalAttrs.passthru.gst_packages ++ [ 508 ArchiveZip 509 CoinMP 510 IOCompress ··· 573 libxshmfence 574 libxslt 575 libzmf 576 + libwebp 577 mdds 578 mythes 579 ncurses ··· 594 which 595 zip 596 zlib 597 + ] ++ optionals kdeIntegration [ 598 + qtbase 599 + qtx11extras 600 + kcoreaddons 601 + kio 602 + ]; 603 604 passthru = { 605 inherit srcs; 606 jdk = jre'; 607 + updateScript = [ 608 + ./update.sh 609 + # Pass it this file name as argument 610 + (builtins.unsafeGetAttrPos "pname" finalAttrs.finalPackage).file 611 + # And the variant 612 + variant 613 + ]; 614 inherit kdeIntegration; 615 # For the wrapper.nix 616 inherit gtk3; ··· 667 maintainers = with maintainers; [ raskin ]; 668 platforms = platforms.linux; 669 }; 670 + })
-4
pkgs/applications/office/libreoffice/download-list-builder.sh
··· 1 - if [ -e .attrs.sh ]; then source .attrs.sh; fi 2 - source $stdenv/setup 3 - 4 - tar --extract --file=$src libreoffice-$version/download.lst -O > $out
···
-29
pkgs/applications/office/libreoffice/gen-shell.nix
··· 1 - { pkgs ? (import <nixpkgs> {}), variant }: 2 - 3 - with pkgs; 4 - 5 - let 6 - 7 - primary-src = callPackage (./. + "/src-${variant}/primary.nix") {}; 8 - 9 - in 10 - 11 - stdenv.mkDerivation { 12 - name = "generate-libreoffice-srcs-shell"; 13 - 14 - buildCommand = "exit 1"; 15 - 16 - downloadList = stdenv.mkDerivation { 17 - name = "libreoffice-${primary-src.version}-download-list"; 18 - inherit (primary-src) src version; 19 - builder = ./download-list-builder.sh; 20 - }; 21 - 22 - buildInputs = [ python3 ]; 23 - 24 - shellHook = '' 25 - function generate { 26 - python3 generate-libreoffice-srcs.py ${variant} > src-${variant}/download.nix 27 - } 28 - ''; 29 - }
···
-10
pkgs/applications/office/libreoffice/gpgme-1.18.patch
··· 1 - The way this check mixes C and C++ started to cause issues since gpgme 1.18.0 2 - But we can confidently skip the function check anyway. 3 - --- a/configure.ac 4 - +++ b/configure.ac 5 - @@ -12302,4 +12302 @@ 6 - - # progress_callback is the only func with plain C linkage 7 - - # checking for it also filters out older, KDE-dependent libgpgmepp versions 8 - - AC_CHECK_LIB(gpgmepp, progress_callback, [ GPGMEPP_LIBS=-lgpgmepp ], 9 - - [AC_MSG_ERROR(gpgmepp not found or not functional)], []) 10 - + GPGMEPP_LIBS=-lgpgmepp
···
-100
pkgs/applications/office/libreoffice/poppler-22-04-0.patch
··· 1 - Patch from OpenSUSE 2 - https://build.opensuse.org/package/view_file/LibreOffice:Factory/libreoffice/poppler-22-04-0.patch?expand=1&rev=45e176f964509ebe3560d0dbf1ec8be9 3 - Index: libreoffice-7.3.3.1/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 4 - =================================================================== 5 - --- libreoffice-7.3.3.1.orig/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 6 - +++ libreoffice-7.3.3.1/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 7 - @@ -474,12 +474,21 @@ int PDFOutDev::parseFont( long long nNew 8 - { 9 - // TODO(P3): Unfortunately, need to read stream twice, since 10 - // we must write byte count to stdout before 11 - +#if POPPLER_CHECK_VERSION(22, 04, 0) // readEmbFontFile signature changed 12 - + auto pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef()); 13 - + if ( pBuf ) 14 - + { 15 - + aNewFont.isEmbedded = true; 16 - + nSize = pBuf->size(); 17 - + } 18 - +#else 19 - char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize ); 20 - if( pBuf ) 21 - { 22 - aNewFont.isEmbedded = true; 23 - gfree(pBuf); 24 - } 25 - +#endif 26 - } 27 - 28 - m_aFontMap[ nNewId ] = aNewFont; 29 - @@ -492,21 +501,35 @@ void PDFOutDev::writeFontFile( GfxFont* 30 - return; 31 - 32 - int nSize = 0; 33 - +#if POPPLER_CHECK_VERSION(22, 04, 0) // readEmbFontFile signature changed 34 - + auto pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef()); 35 - + if ( !pBuf ) 36 - + return; 37 - + nSize = pBuf->size(); 38 - +#else 39 - char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize ); 40 - if( !pBuf ) 41 - return; 42 - +#endif 43 - 44 - // ---sync point--- see SYNC STREAMS above 45 - fflush(stdout); 46 - 47 - +#if POPPLER_CHECK_VERSION(22, 04, 0) // readEmbFontFile signature changed 48 - + if( fwrite(pBuf->data(), sizeof(unsigned char), nSize, g_binary_out) != static_cast<size_t>(nSize) ) 49 - + { 50 - +#else 51 - if( fwrite(pBuf, sizeof(char), nSize, g_binary_out) != static_cast<size_t>(nSize) ) 52 - { 53 - gfree(pBuf); 54 - +#endif 55 - exit(1); // error 56 - } 57 - // ---sync point--- see SYNC STREAMS above 58 - fflush(g_binary_out); 59 - +#if !POPPLER_CHECK_VERSION(22, 04, 0) // readEmbFontFile signature changed 60 - gfree(pBuf); 61 - +#endif 62 - } 63 - 64 - #if POPPLER_CHECK_VERSION(0, 83, 0) 65 - @@ -759,7 +782,11 @@ void PDFOutDev::updateFont(GfxState *sta 66 - { 67 - assert(state); 68 - 69 - +#if POPPLER_CHECK_VERSION(22, 04, 0) 70 - + std::shared_ptr<GfxFont> gfxFont = state->getFont(); 71 - +#else 72 - GfxFont *gfxFont = state->getFont(); 73 - +#endif 74 - if( !gfxFont ) 75 - return; 76 - 77 - @@ -776,7 +803,11 @@ void PDFOutDev::updateFont(GfxState *sta 78 - m_aFontMap.find( fontID ); 79 - if( it == m_aFontMap.end() ) 80 - { 81 - +#if POPPLER_CHECK_VERSION(22, 04, 0) 82 - + nEmbedSize = parseFont( fontID, gfxFont.get(), state ); 83 - +#else 84 - nEmbedSize = parseFont( fontID, gfxFont, state ); 85 - +#endif 86 - it = m_aFontMap.find( fontID ); 87 - } 88 - 89 - @@ -806,7 +837,11 @@ void PDFOutDev::updateFont(GfxState *sta 90 - 91 - if (nEmbedSize) 92 - { 93 - +#if POPPLER_CHECK_VERSION(22, 04, 0) 94 - + writeFontFile(gfxFont.get()); 95 - +#else 96 - writeFontFile(gfxFont); 97 - +#endif 98 - } 99 - } 100 -
···
-29
pkgs/applications/office/libreoffice/skip-failed-test-with-icu70.patch
··· 1 - --- a/i18npool/qa/cppunit/test_breakiterator.cxx 2 - +++ b/i18npool/qa/cppunit/test_breakiterator.cxx 3 - @@ -35,7 +35,7 @@ public: 4 - void testWeak(); 5 - void testAsian(); 6 - void testThai(); 7 - -#if (U_ICU_VERSION_MAJOR_NUM > 51) 8 - +#if (U_ICU_VERSION_MAJOR_NUM > 51 && U_ICU_VERSION_MAJOR_NUM < 70) 9 - void testLao(); 10 - #ifdef TODO 11 - void testNorthernThai(); 12 - @@ -52,7 +52,7 @@ public: 13 - CPPUNIT_TEST(testWeak); 14 - CPPUNIT_TEST(testAsian); 15 - CPPUNIT_TEST(testThai); 16 - -#if (U_ICU_VERSION_MAJOR_NUM > 51) 17 - +#if (U_ICU_VERSION_MAJOR_NUM > 51 && U_ICU_VERSION_MAJOR_NUM < 70) 18 - CPPUNIT_TEST(testLao); 19 - #ifdef TODO 20 - CPPUNIT_TEST(testKhmer); 21 - @@ -843,7 +843,7 @@ void TestBreakIterator::testAsian() 22 - } 23 - } 24 - 25 - -#if (U_ICU_VERSION_MAJOR_NUM > 51) 26 - +#if (U_ICU_VERSION_MAJOR_NUM > 51 && U_ICU_VERSION_MAJOR_NUM < 70) 27 - //A test to ensure that our Lao word boundary detection is useful 28 - void TestBreakIterator::testLao() 29 - {
···
-6
pkgs/applications/office/libreoffice/soffice-template.desktop
··· 1 - [Desktop Entry] 2 - Name=LibreOffice @app@... 3 - Comment=Enter LibreOffice @app@ filename: 4 - Type=Link 5 - URL=.source/soffice.@ext@ 6 - Icon=libreoffice-oasis-@type@
···
+40 -40
pkgs/applications/office/libreoffice/src-fresh/download.nix pkgs/applications/office/libreoffice/src-still/deps.nix
··· 98 md5name = "89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7-cppunit-1.15.1.tar.gz"; 99 } 100 { 101 - name = "curl-8.0.1.tar.xz"; 102 - url = "https://dev-www.libreoffice.org/src/curl-8.0.1.tar.xz"; 103 - sha256 = "0a381cd82f4d00a9a334438b8ca239afea5bfefcfa9a1025f2bf118e79e0b5f0"; 104 md5 = ""; 105 - md5name = "0a381cd82f4d00a9a334438b8ca239afea5bfefcfa9a1025f2bf118e79e0b5f0-curl-8.0.1.tar.xz"; 106 } 107 { 108 name = "libe-book-0.1.3.tar.xz"; ··· 273 md5name = "0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac-libfreehand-0.1.2.tar.xz"; 274 } 275 { 276 - name = "freetype-2.12.0.tar.xz"; 277 - url = "https://dev-www.libreoffice.org/src/freetype-2.12.0.tar.xz"; 278 - sha256 = "ef5c336aacc1a079ff9262d6308d6c2a066dd4d2a905301c4adda9b354399033"; 279 md5 = ""; 280 - md5name = "ef5c336aacc1a079ff9262d6308d6c2a066dd4d2a905301c4adda9b354399033-freetype-2.12.0.tar.xz"; 281 } 282 { 283 name = "glm-0.9.9.8.zip"; ··· 427 md5name = "2fdc3feb6e9deb17adec9bafa3321419aa19f8f4e5dea7bf8486844ca22207bf-libjpeg-turbo-2.1.5.1.tar.gz"; 428 } 429 { 430 - name = "language-subtag-registry-2022-08-08.tar.bz2"; 431 - url = "https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2"; 432 - sha256 = "e2d9224e0e50fc8ad12a3cf47396bbcadf45b2515839d4770432653a88972c00"; 433 md5 = ""; 434 - md5name = "e2d9224e0e50fc8ad12a3cf47396bbcadf45b2515839d4770432653a88972c00-language-subtag-registry-2022-08-08.tar.bz2"; 435 } 436 { 437 name = "lcms2-2.12.tar.gz"; ··· 504 md5name = "083daa92d8ee6f4af96a6143b12d7fc8fe1a547e14f862304f7281f8f7347483-ltm-1.0.zip"; 505 } 506 { 507 - name = "libwebp-1.3.0.tar.gz"; 508 - url = "https://dev-www.libreoffice.org/src/libwebp-1.3.0.tar.gz"; 509 - sha256 = "64ac4614db292ae8c5aa26de0295bf1623dbb3985054cb656c55e67431def17c"; 510 md5 = ""; 511 - md5name = "64ac4614db292ae8c5aa26de0295bf1623dbb3985054cb656c55e67431def17c-libwebp-1.3.0.tar.gz"; 512 } 513 { 514 name = "xmlsec1-1.2.37.tar.gz"; ··· 518 md5name = "5f8dfbcb6d1e56bddd0b5ec2e00a3d0ca5342a9f57c24dffde5c796b2be2871c-xmlsec1-1.2.37.tar.gz"; 519 } 520 { 521 - name = "libxml2-2.10.4.tar.xz"; 522 - url = "https://dev-www.libreoffice.org/src/libxml2-2.10.4.tar.xz"; 523 - sha256 = "ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45"; 524 md5 = ""; 525 - md5name = "ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45-libxml2-2.10.4.tar.xz"; 526 } 527 { 528 name = "libxslt-1.1.35.tar.xz"; ··· 588 md5name = "19279f70707bbe5ffa619f2dc319f888cec0c4a8d339dc0a21330517bd6f521d-mythes-1.2.5.tar.xz"; 589 } 590 { 591 - name = "nss-3.88.1-with-nspr-4.35.tar.gz"; 592 - url = "https://dev-www.libreoffice.org/src/nss-3.88.1-with-nspr-4.35.tar.gz"; 593 - sha256 = "fcfa26d2738ec5b0cf72ab4be784eac832a75132cda2e295799c04d62a93607a"; 594 md5 = ""; 595 - md5name = "fcfa26d2738ec5b0cf72ab4be784eac832a75132cda2e295799c04d62a93607a-nss-3.88.1-with-nspr-4.35.tar.gz"; 596 } 597 { 598 name = "libodfgen-0.1.8.tar.xz"; ··· 623 md5name = "99f37d6747d88206c470067eda624d5e48c1011e943ec0ab217bae8712e22f34-openldap-2.4.59.tgz"; 624 } 625 { 626 - name = "openssl-3.0.8.tar.gz"; 627 - url = "https://dev-www.libreoffice.org/src/openssl-3.0.8.tar.gz"; 628 - sha256 = "6c13d2bf38fdf31eac3ce2a347073673f5d63263398f1f69d0df4a41253e4b3e"; 629 md5 = ""; 630 - md5name = "6c13d2bf38fdf31eac3ce2a347073673f5d63263398f1f69d0df4a41253e4b3e-openssl-3.0.8.tar.gz"; 631 } 632 { 633 name = "liborcus-0.17.2.tar.bz2"; ··· 644 md5name = "66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d-libpagemaker-0.0.4.tar.xz"; 645 } 646 { 647 - name = "pdfium-5408.tar.bz2"; 648 - url = "https://dev-www.libreoffice.org/src/pdfium-5408.tar.bz2"; 649 - sha256 = "7db59b1e91f2bc0ab4c5e19d1a4f881e6a47dbb0d3b7e980a7358225b12a0f35"; 650 md5 = ""; 651 - md5name = "7db59b1e91f2bc0ab4c5e19d1a4f881e6a47dbb0d3b7e980a7358225b12a0f35-pdfium-5408.tar.bz2"; 652 } 653 { 654 name = "pixman-0.42.2.tar.gz"; ··· 665 md5name = "1f4696ce70b4ee5f85f1e1623dc1229b210029fa4b7aee573df3e2ba7b036937-libpng-1.6.39.tar.xz"; 666 } 667 { 668 - name = "tiff-4.5.0rc3.tar.xz"; 669 - url = "https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz"; 670 - sha256 = "dafac979c5e7b6c650025569c5a4e720995ba5f17bc17e6276d1f12427be267c"; 671 md5 = ""; 672 - md5name = "dafac979c5e7b6c650025569c5a4e720995ba5f17bc17e6276d1f12427be267c-tiff-4.5.0rc3.tar.xz"; 673 } 674 { 675 name = "poppler-22.12.0.tar.xz"; ··· 693 md5name = "5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2-postgresql-13.10.tar.bz2"; 694 } 695 { 696 - name = "Python-3.8.16.tar.xz"; 697 - url = "https://dev-www.libreoffice.org/src/Python-3.8.16.tar.xz"; 698 - sha256 = "d85dbb3774132473d8081dcb158f34a10ccad7a90b96c7e50ea4bb61f5ce4562"; 699 md5 = ""; 700 - md5name = "d85dbb3774132473d8081dcb158f34a10ccad7a90b96c7e50ea4bb61f5ce4562-Python-3.8.16.tar.xz"; 701 } 702 { 703 name = "libqxp-0.0.2.tar.xz";
··· 98 md5name = "89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7-cppunit-1.15.1.tar.gz"; 99 } 100 { 101 + name = "curl-8.2.1.tar.xz"; 102 + url = "https://dev-www.libreoffice.org/src/curl-8.2.1.tar.xz"; 103 + sha256 = "dd322f6bd0a20e6cebdfd388f69e98c3d183bed792cf4713c8a7ef498cba4894"; 104 md5 = ""; 105 + md5name = "dd322f6bd0a20e6cebdfd388f69e98c3d183bed792cf4713c8a7ef498cba4894-curl-8.2.1.tar.xz"; 106 } 107 { 108 name = "libe-book-0.1.3.tar.xz"; ··· 273 md5name = "0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac-libfreehand-0.1.2.tar.xz"; 274 } 275 { 276 + name = "freetype-2.13.0.tar.xz"; 277 + url = "https://dev-www.libreoffice.org/src/freetype-2.13.0.tar.xz"; 278 + sha256 = "5ee23abd047636c24b2d43c6625dcafc66661d1aca64dec9e0d05df29592624c"; 279 md5 = ""; 280 + md5name = "5ee23abd047636c24b2d43c6625dcafc66661d1aca64dec9e0d05df29592624c-freetype-2.13.0.tar.xz"; 281 } 282 { 283 name = "glm-0.9.9.8.zip"; ··· 427 md5name = "2fdc3feb6e9deb17adec9bafa3321419aa19f8f4e5dea7bf8486844ca22207bf-libjpeg-turbo-2.1.5.1.tar.gz"; 428 } 429 { 430 + name = "language-subtag-registry-2023-05-11.tar.bz2"; 431 + url = "https://dev-www.libreoffice.org/src/language-subtag-registry-2023-05-11.tar.bz2"; 432 + sha256 = "9042b64cd473bf36073513b474046f13778107b57c2ac47fb2633104120d69da"; 433 md5 = ""; 434 + md5name = "9042b64cd473bf36073513b474046f13778107b57c2ac47fb2633104120d69da-language-subtag-registry-2023-05-11.tar.bz2"; 435 } 436 { 437 name = "lcms2-2.12.tar.gz"; ··· 504 md5name = "083daa92d8ee6f4af96a6143b12d7fc8fe1a547e14f862304f7281f8f7347483-ltm-1.0.zip"; 505 } 506 { 507 + name = "libwebp-1.3.2.tar.gz"; 508 + url = "https://dev-www.libreoffice.org/src/libwebp-1.3.2.tar.gz"; 509 + sha256 = "2a499607df669e40258e53d0ade8035ba4ec0175244869d1025d460562aa09b4"; 510 md5 = ""; 511 + md5name = "2a499607df669e40258e53d0ade8035ba4ec0175244869d1025d460562aa09b4-libwebp-1.3.2.tar.gz"; 512 } 513 { 514 name = "xmlsec1-1.2.37.tar.gz"; ··· 518 md5name = "5f8dfbcb6d1e56bddd0b5ec2e00a3d0ca5342a9f57c24dffde5c796b2be2871c-xmlsec1-1.2.37.tar.gz"; 519 } 520 { 521 + name = "libxml2-2.11.4.tar.xz"; 522 + url = "https://dev-www.libreoffice.org/src/libxml2-2.11.4.tar.xz"; 523 + sha256 = "737e1d7f8ab3f139729ca13a2494fd17bf30ddb4b7a427cf336252cab57f57f7"; 524 md5 = ""; 525 + md5name = "737e1d7f8ab3f139729ca13a2494fd17bf30ddb4b7a427cf336252cab57f57f7-libxml2-2.11.4.tar.xz"; 526 } 527 { 528 name = "libxslt-1.1.35.tar.xz"; ··· 588 md5name = "19279f70707bbe5ffa619f2dc319f888cec0c4a8d339dc0a21330517bd6f521d-mythes-1.2.5.tar.xz"; 589 } 590 { 591 + name = "nss-3.90-with-nspr-4.35.tar.gz"; 592 + url = "https://dev-www.libreoffice.org/src/nss-3.90-with-nspr-4.35.tar.gz"; 593 + sha256 = "f78ab1d911cae8bbc94758fb3bd0f731df4087423a4ff5db271ba65381f6b739"; 594 md5 = ""; 595 + md5name = "f78ab1d911cae8bbc94758fb3bd0f731df4087423a4ff5db271ba65381f6b739-nss-3.90-with-nspr-4.35.tar.gz"; 596 } 597 { 598 name = "libodfgen-0.1.8.tar.xz"; ··· 623 md5name = "99f37d6747d88206c470067eda624d5e48c1011e943ec0ab217bae8712e22f34-openldap-2.4.59.tgz"; 624 } 625 { 626 + name = "openssl-3.0.10.tar.gz"; 627 + url = "https://dev-www.libreoffice.org/src/openssl-3.0.10.tar.gz"; 628 + sha256 = "1761d4f5b13a1028b9b6f3d4b8e17feb0cedc9370f6afe61d7193d2cdce83323"; 629 md5 = ""; 630 + md5name = "1761d4f5b13a1028b9b6f3d4b8e17feb0cedc9370f6afe61d7193d2cdce83323-openssl-3.0.10.tar.gz"; 631 } 632 { 633 name = "liborcus-0.17.2.tar.bz2"; ··· 644 md5name = "66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d-libpagemaker-0.0.4.tar.xz"; 645 } 646 { 647 + name = "pdfium-5778.tar.bz2"; 648 + url = "https://dev-www.libreoffice.org/src/pdfium-5778.tar.bz2"; 649 + sha256 = "b1052ff24e9ffb11af017c444bb0f6ad508d64c9a0fb88cacb0e8210245dde06"; 650 md5 = ""; 651 + md5name = "b1052ff24e9ffb11af017c444bb0f6ad508d64c9a0fb88cacb0e8210245dde06-pdfium-5778.tar.bz2"; 652 } 653 { 654 name = "pixman-0.42.2.tar.gz"; ··· 665 md5name = "1f4696ce70b4ee5f85f1e1623dc1229b210029fa4b7aee573df3e2ba7b036937-libpng-1.6.39.tar.xz"; 666 } 667 { 668 + name = "tiff-4.5.1.tar.xz"; 669 + url = "https://dev-www.libreoffice.org/src/tiff-4.5.1.tar.xz"; 670 + sha256 = "3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a"; 671 md5 = ""; 672 + md5name = "3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a-tiff-4.5.1.tar.xz"; 673 } 674 { 675 name = "poppler-22.12.0.tar.xz"; ··· 693 md5name = "5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2-postgresql-13.10.tar.bz2"; 694 } 695 { 696 + name = "Python-3.8.18.tar.xz"; 697 + url = "https://dev-www.libreoffice.org/src/Python-3.8.18.tar.xz"; 698 + sha256 = "3ffb71cd349a326ba7b2fadc7e7df86ba577dd9c4917e52a8401adbda7405e3f"; 699 md5 = ""; 700 + md5name = "3ffb71cd349a326ba7b2fadc7e7df86ba577dd9c4917e52a8401adbda7405e3f-Python-3.8.18.tar.xz"; 701 } 702 { 703 name = "libqxp-0.0.2.tar.xz";
+4
pkgs/applications/office/libreoffice/src-fresh/help.nix
···
··· 1 + { 2 + sha256 = "0j6idhdywnbl0qaimf1ahxaqvp9s0y2hfrbcbmw32c30g812gp3b"; 3 + url = "https://download.documentfoundation.org/libreoffice/src/7.6.2/libreoffice-help-7.6.2.1.tar.xz"; 4 + }
+4
pkgs/applications/office/libreoffice/src-fresh/main.nix
···
··· 1 + { 2 + sha256 = "18lw5gnjihjwzdsk6xql7ax5lasykxxvg5bp40q4rqics0xp7lp5"; 3 + url = "https://download.documentfoundation.org/libreoffice/src/7.6.2/libreoffice-7.6.2.1.tar.xz"; 4 + }
-22
pkgs/applications/office/libreoffice/src-fresh/override.nix
··· 1 - { lib, kdeIntegration, ... }: 2 - attrs: 3 - { 4 - postConfigure = attrs.postConfigure + '' 5 - sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx' 6 - sed -e '/CPPUNIT_ASSERT(!bRTL);/d' -i './vcl/qa/cppunit/text.cxx' 7 - 8 - sed -e '/CPPUNIT_ASSERT_EQUAL(0, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 9 - sed -e '/CPPUNIT_ASSERT_EQUAL(4, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 10 - sed -e '/CPPUNIT_ASSERT_EQUAL(11, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 11 - sed -e '/CPPUNIT_ASSERT_EQUAL(18, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 12 - 13 - sed -e '/CPPUNIT_ASSERT_EQUAL(3, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 14 - sed -e '/CPPUNIT_ASSERT_EQUAL(9, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 15 - sed -e '/CPPUNIT_ASSERT_EQUAL(17, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 16 - sed -e '/CPPUNIT_ASSERT_EQUAL(22, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 17 - ''; 18 - configureFlags = attrs.configureFlags ++ [ 19 - "--without-system-dragonbox" 20 - "--without-system-libfixmath" 21 - ]; 22 - }
···
-36
pkgs/applications/office/libreoffice/src-fresh/primary.nix
··· 1 - { fetchurl }: 2 - 3 - rec { 4 - fetchSrc = {name, hash}: fetchurl { 5 - url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz"; 6 - sha256 = hash; 7 - }; 8 - 9 - major = "7"; 10 - minor = "5"; 11 - patch = "4"; 12 - tweak = "1"; 13 - 14 - subdir = "${major}.${minor}.${patch}"; 15 - 16 - version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; 17 - 18 - src = fetchurl { 19 - url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 - hash = "sha256-dWE7yXldkiEnsJOxfxyZ9p05eARqexgRRgNV158VVF4="; 21 - }; 22 - 23 - # FIXME rename 24 - translations = fetchSrc { 25 - name = "translations"; 26 - hash = "sha256-dv3L8DtdxZcwmeXnqtTtwIpOvwZg3aH3VvJBiiZzbh0="; 27 - }; 28 - 29 - # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from 30 - # it and LibreOffice can use these by pointing DICPATH environment variable at the hunspell directory 31 - 32 - help = fetchSrc { 33 - name = "help"; 34 - hash = "sha256-2CrGEyK5AQEAo1Qz1ACmvMH7BaOubW5BNLWv3fDEdOY="; 35 - }; 36 - }
···
+4
pkgs/applications/office/libreoffice/src-fresh/translations.nix
···
··· 1 + { 2 + sha256 = "02nnys853na9hwznxnf1h0pm5ymijvpyv9chg45v11vy2ak9y8sv"; 3 + url = "https://download.documentfoundation.org/libreoffice/src/7.6.2/libreoffice-translations-7.6.2.1.tar.xz"; 4 + }
+1
pkgs/applications/office/libreoffice/src-fresh/version.nix
···
··· 1 + "7.6.2.1"
+140 -175
pkgs/applications/office/libreoffice/src-still/download.nix pkgs/applications/office/libreoffice/src-fresh/deps.nix
··· 7 md5name = "e763a9dc21c3d2667402d66e202e3f8ef4db51b34b79ef41f56cacb86dcd6eed-libabw-0.1.3.tar.xz"; 8 } 9 { 10 - name = "boost_1_79_0.tar.xz"; 11 - url = "https://dev-www.libreoffice.org/src/boost_1_79_0.tar.xz"; 12 - sha256 = "2058aa88758a0e1aaac1759b3c4bad2526f899c6ecc6eeea79aa5e8fd3ea95dc"; 13 md5 = ""; 14 - md5name = "2058aa88758a0e1aaac1759b3c4bad2526f899c6ecc6eeea79aa5e8fd3ea95dc-boost_1_79_0.tar.xz"; 15 } 16 { 17 name = "box2d-2.4.1.tar.gz"; ··· 98 md5name = "89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7-cppunit-1.15.1.tar.gz"; 99 } 100 { 101 - name = "curl-8.0.1.tar.xz"; 102 - url = "https://dev-www.libreoffice.org/src/curl-8.0.1.tar.xz"; 103 - sha256 = "0a381cd82f4d00a9a334438b8ca239afea5bfefcfa9a1025f2bf118e79e0b5f0"; 104 md5 = ""; 105 - md5name = "0a381cd82f4d00a9a334438b8ca239afea5bfefcfa9a1025f2bf118e79e0b5f0-curl-8.0.1.tar.xz"; 106 } 107 { 108 name = "libe-book-0.1.3.tar.xz"; ··· 154 md5name = "acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76-Firebird-3.0.7.33374-0.tar.bz2"; 155 } 156 { 157 - name = "fontconfig-2.13.94.tar.xz"; 158 - url = "https://dev-www.libreoffice.org/src/fontconfig-2.13.94.tar.xz"; 159 - sha256 = "a5f052cb73fd479ffb7b697980510903b563bbb55b8f7a2b001fcfb94026003c"; 160 md5 = ""; 161 - md5name = "a5f052cb73fd479ffb7b697980510903b563bbb55b8f7a2b001fcfb94026003c-fontconfig-2.13.94.tar.xz"; 162 } 163 { 164 name = "crosextrafonts-20130214.tar.gz"; ··· 210 md5name = "e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip"; 211 } 212 { 213 - name = "source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 214 - url = "https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 215 - sha256 = "09466dce87653333f189acd8358c60c6736dcd95f042dee0b644bdcf65b6ae2f"; 216 - md5 = "907d6e99f241876695c19ff3db0b8923"; 217 - md5name = "907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz"; 218 - } 219 - { 220 - name = "source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 221 - url = "https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 222 - sha256 = "e7bc9a1fec787a529e49f5a26b93dcdcf41506449dfc70f92cdef6d17eb6fb61"; 223 - md5 = "edc4d741888bc0d38e32dbaa17149596"; 224 - md5name = "edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz"; 225 - } 226 - { 227 - name = "source-serif-pro-3.000R.tar.gz"; 228 - url = "https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz"; 229 - sha256 = "826a2b784d5cdb4c2bbc7830eb62871528360a61a52689c102a101623f1928e3"; 230 - md5 = ""; 231 - md5name = "826a2b784d5cdb4c2bbc7830eb62871528360a61a52689c102a101623f1928e3-source-serif-pro-3.000R.tar.gz"; 232 - } 233 - { 234 - name = "EmojiOneColor-SVGinOT-1.3.tar.gz"; 235 - url = "https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz"; 236 - sha256 = "d1a08f7c10589f22740231017694af0a7a270760c8dec33d8d1c038e2be0a0c7"; 237 - md5 = ""; 238 - md5name = "d1a08f7c10589f22740231017694af0a7a270760c8dec33d8d1c038e2be0a0c7-EmojiOneColor-SVGinOT-1.3.tar.gz"; 239 - } 240 - { 241 name = "noto-fonts-20171024.tar.gz"; 242 url = "https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz"; 243 sha256 = "29acc15a4c4d6b51201ba5d60f303dfbc2e5acbfdb70413c9ae1ed34fa259994"; ··· 266 md5name = "b98b67602a2c8880a1770f0b9e37c190f29a7e2ade5616784f0b89fbdb75bf52-alef-1.001.tar.gz"; 267 } 268 { 269 - name = "Amiri-0.117.zip"; 270 - url = "https://dev-www.libreoffice.org/src/Amiri-0.117.zip"; 271 - sha256 = "9c4e768893e0023a0ad6f488d5c84bd5add6565d3dcadb838ba5b20e75fcc9a7"; 272 md5 = ""; 273 - md5name = "9c4e768893e0023a0ad6f488d5c84bd5add6565d3dcadb838ba5b20e75fcc9a7-Amiri-0.117.zip"; 274 - } 275 - { 276 - name = "ttf-kacst_2.01+mry.tar.gz"; 277 - url = "https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz"; 278 - sha256 = "dca00f5e655f2f217a766faa73a81f542c5c204aa3a47017c3c2be0b31d00a56"; 279 - md5 = ""; 280 - md5name = "dca00f5e655f2f217a766faa73a81f542c5c204aa3a47017c3c2be0b31d00a56-ttf-kacst_2.01+mry.tar.gz"; 281 } 282 { 283 name = "ReemKufi-1.2.zip"; ··· 301 md5name = "0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac-libfreehand-0.1.2.tar.xz"; 302 } 303 { 304 - name = "freetype-2.12.0.tar.xz"; 305 - url = "https://dev-www.libreoffice.org/src/freetype-2.12.0.tar.xz"; 306 - sha256 = "ef5c336aacc1a079ff9262d6308d6c2a066dd4d2a905301c4adda9b354399033"; 307 md5 = ""; 308 - md5name = "ef5c336aacc1a079ff9262d6308d6c2a066dd4d2a905301c4adda9b354399033-freetype-2.12.0.tar.xz"; 309 } 310 { 311 name = "glm-0.9.9.8.zip"; ··· 329 md5name = "b8e892d8627c41888ff121e921455b9e2d26836978f2359173d19825da62b8fc-graphite2-minimal-1.3.14.tgz"; 330 } 331 { 332 - name = "harfbuzz-7.1.0.tar.xz"; 333 - url = "https://dev-www.libreoffice.org/src/harfbuzz-7.1.0.tar.xz"; 334 - sha256 = "f135a61cd464c9ed6bc9823764c188f276c3850a8dc904628de2a87966b7077b"; 335 md5 = ""; 336 - md5name = "f135a61cd464c9ed6bc9823764c188f276c3850a8dc904628de2a87966b7077b-harfbuzz-7.1.0.tar.xz"; 337 } 338 { 339 name = "hsqldb_1_8_0.zip"; ··· 343 md5name = "17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip"; 344 } 345 { 346 - name = "hunspell-1.7.0.tar.gz"; 347 - url = "https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz"; 348 - sha256 = "57be4e03ae9dd62c3471f667a0d81a14513e314d4d92081292b90435944ff951"; 349 md5 = ""; 350 - md5name = "57be4e03ae9dd62c3471f667a0d81a14513e314d4d92081292b90435944ff951-hunspell-1.7.0.tar.gz"; 351 } 352 { 353 name = "hyphen-2.8.8.tar.gz"; ··· 357 md5name = "5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz"; 358 } 359 { 360 - name = "icu4c-71_1-src.tgz"; 361 - url = "https://dev-www.libreoffice.org/src/icu4c-71_1-src.tgz"; 362 - sha256 = "67a7e6e51f61faf1306b6935333e13b2c48abd8da6d2f46ce6adca24b1e21ebf"; 363 md5 = ""; 364 - md5name = "67a7e6e51f61faf1306b6935333e13b2c48abd8da6d2f46ce6adca24b1e21ebf-icu4c-71_1-src.tgz"; 365 } 366 { 367 - name = "icu4c-71_1-data.zip"; 368 - url = "https://dev-www.libreoffice.org/src/icu4c-71_1-data.zip"; 369 - sha256 = "e3882b4fece6e5e039f22c3189b7ba224180fd26fdbfa9db284617455b93e804"; 370 md5 = ""; 371 - md5name = "e3882b4fece6e5e039f22c3189b7ba224180fd26fdbfa9db284617455b93e804-icu4c-71_1-data.zip"; 372 } 373 { 374 name = "flow-engine-0.9.4.zip"; ··· 448 md5name = "39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip"; 449 } 450 { 451 - name = "libjpeg-turbo-2.1.2.tar.gz"; 452 - url = "https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.2.tar.gz"; 453 - sha256 = "09b96cb8cbff9ea556a9c2d173485fd19488844d55276ed4f42240e1e2073ce5"; 454 md5 = ""; 455 - md5name = "09b96cb8cbff9ea556a9c2d173485fd19488844d55276ed4f42240e1e2073ce5-libjpeg-turbo-2.1.2.tar.gz"; 456 } 457 { 458 - name = "language-subtag-registry-2022-08-08.tar.bz2"; 459 - url = "https://dev-www.libreoffice.org/src/language-subtag-registry-2022-08-08.tar.bz2"; 460 - sha256 = "e2d9224e0e50fc8ad12a3cf47396bbcadf45b2515839d4770432653a88972c00"; 461 md5 = ""; 462 - md5name = "e2d9224e0e50fc8ad12a3cf47396bbcadf45b2515839d4770432653a88972c00-language-subtag-registry-2022-08-08.tar.bz2"; 463 } 464 { 465 name = "lcms2-2.12.tar.gz"; ··· 469 md5name = "18663985e864100455ac3e507625c438c3710354d85e5cbb7cd4043e11fe10f5-lcms2-2.12.tar.gz"; 470 } 471 { 472 - name = "libassuan-2.5.5.tar.bz2"; 473 - url = "https://dev-www.libreoffice.org/src/libassuan-2.5.5.tar.bz2"; 474 - sha256 = "8e8c2fcc982f9ca67dcbb1d95e2dc746b1739a4668bc20b3a3c5be632edb34e4"; 475 md5 = ""; 476 - md5name = "8e8c2fcc982f9ca67dcbb1d95e2dc746b1739a4668bc20b3a3c5be632edb34e4-libassuan-2.5.5.tar.bz2"; 477 } 478 { 479 name = "libatomic_ops-7.6.8.tar.gz"; ··· 525 md5name = "5dcb4db3b2340f81f601ce86d8d76b69e34d70f84f804192c901e4b7f84d5fb0-libnumbertext-1.0.11.tar.xz"; 526 } 527 { 528 - name = "ltm-1.0.zip"; 529 - url = "https://dev-www.libreoffice.org/src/ltm-1.0.zip"; 530 - sha256 = "083daa92d8ee6f4af96a6143b12d7fc8fe1a547e14f862304f7281f8f7347483"; 531 md5 = ""; 532 - md5name = "083daa92d8ee6f4af96a6143b12d7fc8fe1a547e14f862304f7281f8f7347483-ltm-1.0.zip"; 533 } 534 { 535 - name = "libwebp-1.2.4.tar.gz"; 536 - url = "https://dev-www.libreoffice.org/src/libwebp-1.2.4.tar.gz"; 537 - sha256 = "7bf5a8a28cc69bcfa8cb214f2c3095703c6b73ac5fba4d5480c205331d9494df"; 538 md5 = ""; 539 - md5name = "7bf5a8a28cc69bcfa8cb214f2c3095703c6b73ac5fba4d5480c205331d9494df-libwebp-1.2.4.tar.gz"; 540 } 541 { 542 - name = "xmlsec1-1.2.34.tar.gz"; 543 - url = "https://dev-www.libreoffice.org/src/xmlsec1-1.2.34.tar.gz"; 544 - sha256 = "52ced4943f35bd7d0818a38298c1528ca4ac8a54440fd71134a07d2d1370a262"; 545 md5 = ""; 546 - md5name = "52ced4943f35bd7d0818a38298c1528ca4ac8a54440fd71134a07d2d1370a262-xmlsec1-1.2.34.tar.gz"; 547 } 548 { 549 - name = "libxml2-2.10.4.tar.xz"; 550 - url = "https://dev-www.libreoffice.org/src/libxml2-2.10.4.tar.xz"; 551 - sha256 = "ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45"; 552 md5 = ""; 553 - md5name = "ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45-libxml2-2.10.4.tar.xz"; 554 } 555 { 556 - name = "libxslt-1.1.35.tar.xz"; 557 - url = "https://dev-www.libreoffice.org/src/libxslt-1.1.35.tar.xz"; 558 - sha256 = "8247f33e9a872c6ac859aa45018bc4c4d00b97e2feac9eebc10c93ce1f34dd79"; 559 md5 = ""; 560 - md5name = "8247f33e9a872c6ac859aa45018bc4c4d00b97e2feac9eebc10c93ce1f34dd79-libxslt-1.1.35.tar.xz"; 561 } 562 { 563 name = "lp_solve_5.5.tar.gz"; ··· 581 md5name = "431434d3926f4bcce2e5c97240609983f60d7ff50df5a72083934759bb863f7b-mariadb-connector-c-3.1.8-src.tar.gz"; 582 } 583 { 584 - name = "mdds-2.0.3.tar.bz2"; 585 - url = "https://dev-www.libreoffice.org/src/mdds-2.0.3.tar.bz2"; 586 - sha256 = "9771fe42e133443c13ca187253763e17c8bc96a1a02aec9e1e8893367ffa9ce5"; 587 md5 = ""; 588 - md5name = "9771fe42e133443c13ca187253763e17c8bc96a1a02aec9e1e8893367ffa9ce5-mdds-2.0.3.tar.bz2"; 589 } 590 { 591 name = "mDNSResponder-878.200.35.tar.gz"; ··· 609 md5name = "e8750123a78d61b943cef78b7736c8a7f20bb0a649aa112402124fba794fc21c-libmwaw-0.3.21.tar.xz"; 610 } 611 { 612 - name = "mythes-1.2.4.tar.gz"; 613 - url = "https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz"; 614 - sha256 = "1e81f395d8c851c3e4e75b568e20fa2fa549354e75ab397f9de4b0e0790a305f"; 615 - md5 = "a8c2c5b8f09e7ede322d5c602ff6a4b6"; 616 - md5name = "a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz"; 617 } 618 { 619 - name = "nss-3.88.1-with-nspr-4.35.tar.gz"; 620 - url = "https://dev-www.libreoffice.org/src/nss-3.88.1-with-nspr-4.35.tar.gz"; 621 - sha256 = "fcfa26d2738ec5b0cf72ab4be784eac832a75132cda2e295799c04d62a93607a"; 622 md5 = ""; 623 - md5name = "fcfa26d2738ec5b0cf72ab4be784eac832a75132cda2e295799c04d62a93607a-nss-3.88.1-with-nspr-4.35.tar.gz"; 624 } 625 { 626 name = "libodfgen-0.1.8.tar.xz"; ··· 644 md5name = "8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar"; 645 } 646 { 647 - name = "openldap-2.4.59.tgz"; 648 - url = "https://dev-www.libreoffice.org/src/openldap-2.4.59.tgz"; 649 - sha256 = "99f37d6747d88206c470067eda624d5e48c1011e943ec0ab217bae8712e22f34"; 650 md5 = ""; 651 - md5name = "99f37d6747d88206c470067eda624d5e48c1011e943ec0ab217bae8712e22f34-openldap-2.4.59.tgz"; 652 } 653 { 654 - name = "openssl-1.1.1t.tar.gz"; 655 - url = "https://dev-www.libreoffice.org/src/openssl-1.1.1t.tar.gz"; 656 - sha256 = "8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b"; 657 md5 = ""; 658 - md5name = "8dee9b24bdb1dcbf0c3d1e9b02fb8f6bf22165e807f45adeb7c9677536859d3b-openssl-1.1.1t.tar.gz"; 659 } 660 { 661 - name = "liborcus-0.17.2.tar.bz2"; 662 - url = "https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2"; 663 - sha256 = "2a86c405a5929f749b27637509596421d46805753364ab258b035fd01fbde143"; 664 md5 = ""; 665 - md5name = "2a86c405a5929f749b27637509596421d46805753364ab258b035fd01fbde143-liborcus-0.17.2.tar.bz2"; 666 } 667 { 668 name = "libpagemaker-0.0.4.tar.xz"; ··· 672 md5name = "66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d-libpagemaker-0.0.4.tar.xz"; 673 } 674 { 675 - name = "pdfium-5058.tar.bz2"; 676 - url = "https://dev-www.libreoffice.org/src/pdfium-5058.tar.bz2"; 677 - sha256 = "eaf4ce9fad32b5d951c524139df23119b66c67720057defb97acab2dfb2582ac"; 678 md5 = ""; 679 - md5name = "eaf4ce9fad32b5d951c524139df23119b66c67720057defb97acab2dfb2582ac-pdfium-5058.tar.bz2"; 680 } 681 { 682 name = "pixman-0.42.2.tar.gz"; ··· 686 md5name = "ea1480efada2fd948bc75366f7c349e1c96d3297d09a3fe62626e38e234a625e-pixman-0.42.2.tar.gz"; 687 } 688 { 689 - name = "libpng-1.6.39.tar.xz"; 690 - url = "https://dev-www.libreoffice.org/src/libpng-1.6.39.tar.xz"; 691 - sha256 = "1f4696ce70b4ee5f85f1e1623dc1229b210029fa4b7aee573df3e2ba7b036937"; 692 md5 = ""; 693 - md5name = "1f4696ce70b4ee5f85f1e1623dc1229b210029fa4b7aee573df3e2ba7b036937-libpng-1.6.39.tar.xz"; 694 } 695 { 696 - name = "tiff-4.5.0rc3.tar.xz"; 697 - url = "https://dev-www.libreoffice.org/src/tiff-4.5.0rc3.tar.xz"; 698 - sha256 = "dafac979c5e7b6c650025569c5a4e720995ba5f17bc17e6276d1f12427be267c"; 699 md5 = ""; 700 - md5name = "dafac979c5e7b6c650025569c5a4e720995ba5f17bc17e6276d1f12427be267c-tiff-4.5.0rc3.tar.xz"; 701 } 702 { 703 - name = "poppler-22.12.0.tar.xz"; 704 - url = "https://dev-www.libreoffice.org/src/poppler-22.12.0.tar.xz"; 705 - sha256 = "d9aa9cacdfbd0f8e98fc2b3bb008e645597ed480685757c3e7bc74b4278d15c0"; 706 md5 = ""; 707 - md5name = "d9aa9cacdfbd0f8e98fc2b3bb008e645597ed480685757c3e7bc74b4278d15c0-poppler-22.12.0.tar.xz"; 708 } 709 { 710 - name = "poppler-data-0.4.11.tar.gz"; 711 - url = "https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz"; 712 - sha256 = "2cec05cd1bb03af98a8b06a1e22f6e6e1a65b1e2f3816cb3069bb0874825f08c"; 713 md5 = ""; 714 - md5name = "2cec05cd1bb03af98a8b06a1e22f6e6e1a65b1e2f3816cb3069bb0874825f08c-poppler-data-0.4.11.tar.gz"; 715 } 716 { 717 - name = "postgresql-13.10.tar.bz2"; 718 - url = "https://dev-www.libreoffice.org/src/postgresql-13.10.tar.bz2"; 719 - sha256 = "5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2"; 720 md5 = ""; 721 - md5name = "5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2-postgresql-13.10.tar.bz2"; 722 } 723 { 724 - name = "Python-3.8.16.tar.xz"; 725 - url = "https://dev-www.libreoffice.org/src/Python-3.8.16.tar.xz"; 726 - sha256 = "d85dbb3774132473d8081dcb158f34a10ccad7a90b96c7e50ea4bb61f5ce4562"; 727 md5 = ""; 728 - md5name = "d85dbb3774132473d8081dcb158f34a10ccad7a90b96c7e50ea4bb61f5ce4562-Python-3.8.16.tar.xz"; 729 } 730 { 731 name = "libqxp-0.0.2.tar.xz"; ··· 770 md5name = "798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip"; 771 } 772 { 773 - name = "skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz"; 774 - url = "https://dev-www.libreoffice.org/src/skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz"; 775 - sha256 = "c094a6247e44104beaaa0d00c825beb6baf1a8e532dc22214747495317a65bd9"; 776 md5 = ""; 777 - md5name = "c094a6247e44104beaaa0d00c825beb6baf1a8e532dc22214747495317a65bd9-skia-m103-b301ff025004c9cd82816c86c547588e6c24b466.tar.xz"; 778 } 779 { 780 name = "libstaroffice-0.0.7.tar.xz"; ··· 798 md5name = "82c818be771f242388457aa8c807e4b52aa84dc22b21c6c56184a6b4cbb085e6-twaindsm_2.4.1.orig.tar.gz"; 799 } 800 { 801 - name = "ucpp-1.3.2.tar.gz"; 802 - url = "https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz"; 803 - sha256 = "983941d31ee8d366085cadf28db75eb1f5cb03ba1e5853b98f12f7f51c63b776"; 804 - md5 = "0168229624cfac409e766913506961a8"; 805 - md5name = "0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz"; 806 - } 807 - { 808 name = "libvisio-0.1.7.tar.xz"; 809 url = "https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz"; 810 sha256 = "8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c"; ··· 819 md5name = "2465b0b662fdc5d4e3bebcdc9a79027713fb629ca2bff04a3c9251fdec42dd09-libwpd-0.10.3.tar.xz"; 820 } 821 { 822 - name = "libwpg-0.3.3.tar.xz"; 823 - url = "https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz"; 824 - sha256 = "99b3f7f8832385748582ab8130fbb9e5607bd5179bebf9751ac1d51a53099d1c"; 825 md5 = ""; 826 - md5name = "99b3f7f8832385748582ab8130fbb9e5607bd5179bebf9751ac1d51a53099d1c-libwpg-0.3.3.tar.xz"; 827 } 828 { 829 name = "libwps-0.4.12.tar.xz"; ··· 854 md5name = "27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22-libzmf-0.0.2.tar.xz"; 855 } 856 { 857 - name = "zxing-cpp-1.2.0.tar.gz"; 858 - url = "https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz"; 859 - sha256 = "653d9e44195d86cf64a36af9ff3a1978ec5599df3882439fefa56e7064f55e8a"; 860 md5 = ""; 861 - md5name = "653d9e44195d86cf64a36af9ff3a1978ec5599df3882439fefa56e7064f55e8a-zxing-cpp-1.2.0.tar.gz"; 862 } 863 ]
··· 7 md5name = "e763a9dc21c3d2667402d66e202e3f8ef4db51b34b79ef41f56cacb86dcd6eed-libabw-0.1.3.tar.xz"; 8 } 9 { 10 + name = "boost_1_82_0.tar.xz"; 11 + url = "https://dev-www.libreoffice.org/src/boost_1_82_0.tar.xz"; 12 + sha256 = "e48ab6953fbd68ba47234bea5173e62427e9f6a7894e152305142895cfe955de"; 13 md5 = ""; 14 + md5name = "e48ab6953fbd68ba47234bea5173e62427e9f6a7894e152305142895cfe955de-boost_1_82_0.tar.xz"; 15 } 16 { 17 name = "box2d-2.4.1.tar.gz"; ··· 98 md5name = "89c5c6665337f56fd2db36bc3805a5619709d51fb136e51937072f63fcc717a7-cppunit-1.15.1.tar.gz"; 99 } 100 { 101 + name = "curl-8.2.1.tar.xz"; 102 + url = "https://dev-www.libreoffice.org/src/curl-8.2.1.tar.xz"; 103 + sha256 = "dd322f6bd0a20e6cebdfd388f69e98c3d183bed792cf4713c8a7ef498cba4894"; 104 md5 = ""; 105 + md5name = "dd322f6bd0a20e6cebdfd388f69e98c3d183bed792cf4713c8a7ef498cba4894-curl-8.2.1.tar.xz"; 106 } 107 { 108 name = "libe-book-0.1.3.tar.xz"; ··· 154 md5name = "acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76-Firebird-3.0.7.33374-0.tar.bz2"; 155 } 156 { 157 + name = "fontconfig-2.14.2.tar.xz"; 158 + url = "https://dev-www.libreoffice.org/src/fontconfig-2.14.2.tar.xz"; 159 + sha256 = "dba695b57bce15023d2ceedef82062c2b925e51f5d4cc4aef736cf13f60a468b"; 160 md5 = ""; 161 + md5name = "dba695b57bce15023d2ceedef82062c2b925e51f5d4cc4aef736cf13f60a468b-fontconfig-2.14.2.tar.xz"; 162 } 163 { 164 name = "crosextrafonts-20130214.tar.gz"; ··· 210 md5name = "e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip"; 211 } 212 { 213 name = "noto-fonts-20171024.tar.gz"; 214 url = "https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz"; 215 sha256 = "29acc15a4c4d6b51201ba5d60f303dfbc2e5acbfdb70413c9ae1ed34fa259994"; ··· 238 md5name = "b98b67602a2c8880a1770f0b9e37c190f29a7e2ade5616784f0b89fbdb75bf52-alef-1.001.tar.gz"; 239 } 240 { 241 + name = "Amiri-1.000.zip"; 242 + url = "https://dev-www.libreoffice.org/src/Amiri-1.000.zip"; 243 + sha256 = "926fe1bd7dfde8e55178281f645258bfced6420c951c6f2fd532fd21691bca30"; 244 md5 = ""; 245 + md5name = "926fe1bd7dfde8e55178281f645258bfced6420c951c6f2fd532fd21691bca30-Amiri-1.000.zip"; 246 } 247 { 248 name = "ReemKufi-1.2.zip"; ··· 266 md5name = "0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac-libfreehand-0.1.2.tar.xz"; 267 } 268 { 269 + name = "freetype-2.13.0.tar.xz"; 270 + url = "https://dev-www.libreoffice.org/src/freetype-2.13.0.tar.xz"; 271 + sha256 = "5ee23abd047636c24b2d43c6625dcafc66661d1aca64dec9e0d05df29592624c"; 272 md5 = ""; 273 + md5name = "5ee23abd047636c24b2d43c6625dcafc66661d1aca64dec9e0d05df29592624c-freetype-2.13.0.tar.xz"; 274 + } 275 + { 276 + name = "frozen-1.1.1.tar.gz"; 277 + url = "https://dev-www.libreoffice.org/src/frozen-1.1.1.tar.gz"; 278 + sha256 = "f7c7075750e8fceeac081e9ef01944f221b36d9725beac8681cbd2838d26be45"; 279 + md5 = ""; 280 + md5name = "f7c7075750e8fceeac081e9ef01944f221b36d9725beac8681cbd2838d26be45-frozen-1.1.1.tar.gz"; 281 } 282 { 283 name = "glm-0.9.9.8.zip"; ··· 301 md5name = "b8e892d8627c41888ff121e921455b9e2d26836978f2359173d19825da62b8fc-graphite2-minimal-1.3.14.tgz"; 302 } 303 { 304 + name = "harfbuzz-8.0.0.tar.xz"; 305 + url = "https://dev-www.libreoffice.org/src/harfbuzz-8.0.0.tar.xz"; 306 + sha256 = "1f98b5e3d06a344fe667d7e8210094ced458791499839bddde98c167ce6a7c79"; 307 md5 = ""; 308 + md5name = "1f98b5e3d06a344fe667d7e8210094ced458791499839bddde98c167ce6a7c79-harfbuzz-8.0.0.tar.xz"; 309 } 310 { 311 name = "hsqldb_1_8_0.zip"; ··· 315 md5name = "17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip"; 316 } 317 { 318 + name = "hunspell-1.7.2.tar.gz"; 319 + url = "https://dev-www.libreoffice.org/src/hunspell-1.7.2.tar.gz"; 320 + sha256 = "11ddfa39afe28c28539fe65fc4f1592d410c1e9b6dd7d8a91ca25d85e9ec65b8"; 321 md5 = ""; 322 + md5name = "11ddfa39afe28c28539fe65fc4f1592d410c1e9b6dd7d8a91ca25d85e9ec65b8-hunspell-1.7.2.tar.gz"; 323 } 324 { 325 name = "hyphen-2.8.8.tar.gz"; ··· 329 md5name = "5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz"; 330 } 331 { 332 + name = "icu4c-73_2-src.tgz"; 333 + url = "https://dev-www.libreoffice.org/src/icu4c-73_2-src.tgz"; 334 + sha256 = "818a80712ed3caacd9b652305e01afc7fa167e6f2e94996da44b90c2ab604ce1"; 335 md5 = ""; 336 + md5name = "818a80712ed3caacd9b652305e01afc7fa167e6f2e94996da44b90c2ab604ce1-icu4c-73_2-src.tgz"; 337 } 338 { 339 + name = "icu4c-73_2-data.zip"; 340 + url = "https://dev-www.libreoffice.org/src/icu4c-73_2-data.zip"; 341 + sha256 = "ca1ee076163b438461e484421a7679fc33a64cd0a54f9d4b401893fa1eb42701"; 342 md5 = ""; 343 + md5name = "ca1ee076163b438461e484421a7679fc33a64cd0a54f9d4b401893fa1eb42701-icu4c-73_2-data.zip"; 344 } 345 { 346 name = "flow-engine-0.9.4.zip"; ··· 420 md5name = "39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip"; 421 } 422 { 423 + name = "libjpeg-turbo-2.1.5.1.tar.gz"; 424 + url = "https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.5.1.tar.gz"; 425 + sha256 = "2fdc3feb6e9deb17adec9bafa3321419aa19f8f4e5dea7bf8486844ca22207bf"; 426 md5 = ""; 427 + md5name = "2fdc3feb6e9deb17adec9bafa3321419aa19f8f4e5dea7bf8486844ca22207bf-libjpeg-turbo-2.1.5.1.tar.gz"; 428 } 429 { 430 + name = "language-subtag-registry-2023-05-11.tar.bz2"; 431 + url = "https://dev-www.libreoffice.org/src/language-subtag-registry-2023-05-11.tar.bz2"; 432 + sha256 = "9042b64cd473bf36073513b474046f13778107b57c2ac47fb2633104120d69da"; 433 md5 = ""; 434 + md5name = "9042b64cd473bf36073513b474046f13778107b57c2ac47fb2633104120d69da-language-subtag-registry-2023-05-11.tar.bz2"; 435 } 436 { 437 name = "lcms2-2.12.tar.gz"; ··· 441 md5name = "18663985e864100455ac3e507625c438c3710354d85e5cbb7cd4043e11fe10f5-lcms2-2.12.tar.gz"; 442 } 443 { 444 + name = "libassuan-2.5.6.tar.bz2"; 445 + url = "https://dev-www.libreoffice.org/src/libassuan-2.5.6.tar.bz2"; 446 + sha256 = "e9fd27218d5394904e4e39788f9b1742711c3e6b41689a31aa3380bd5aa4f426"; 447 md5 = ""; 448 + md5name = "e9fd27218d5394904e4e39788f9b1742711c3e6b41689a31aa3380bd5aa4f426-libassuan-2.5.6.tar.bz2"; 449 } 450 { 451 name = "libatomic_ops-7.6.8.tar.gz"; ··· 497 md5name = "5dcb4db3b2340f81f601ce86d8d76b69e34d70f84f804192c901e4b7f84d5fb0-libnumbertext-1.0.11.tar.xz"; 498 } 499 { 500 + name = "ltm-1.2.0.tar.xz"; 501 + url = "https://dev-www.libreoffice.org/src/ltm-1.2.0.tar.xz"; 502 + sha256 = "b7c75eecf680219484055fcedd686064409254ae44bc31a96c5032843c0e18b1"; 503 md5 = ""; 504 + md5name = "b7c75eecf680219484055fcedd686064409254ae44bc31a96c5032843c0e18b1-ltm-1.2.0.tar.xz"; 505 } 506 { 507 + name = "libwebp-1.3.2.tar.gz"; 508 + url = "https://dev-www.libreoffice.org/src/libwebp-1.3.2.tar.gz"; 509 + sha256 = "2a499607df669e40258e53d0ade8035ba4ec0175244869d1025d460562aa09b4"; 510 md5 = ""; 511 + md5name = "2a499607df669e40258e53d0ade8035ba4ec0175244869d1025d460562aa09b4-libwebp-1.3.2.tar.gz"; 512 } 513 { 514 + name = "xmlsec1-1.2.37.tar.gz"; 515 + url = "https://dev-www.libreoffice.org/src/xmlsec1-1.2.37.tar.gz"; 516 + sha256 = "5f8dfbcb6d1e56bddd0b5ec2e00a3d0ca5342a9f57c24dffde5c796b2be2871c"; 517 md5 = ""; 518 + md5name = "5f8dfbcb6d1e56bddd0b5ec2e00a3d0ca5342a9f57c24dffde5c796b2be2871c-xmlsec1-1.2.37.tar.gz"; 519 } 520 { 521 + name = "libxml2-2.11.4.tar.xz"; 522 + url = "https://dev-www.libreoffice.org/src/libxml2-2.11.4.tar.xz"; 523 + sha256 = "737e1d7f8ab3f139729ca13a2494fd17bf30ddb4b7a427cf336252cab57f57f7"; 524 md5 = ""; 525 + md5name = "737e1d7f8ab3f139729ca13a2494fd17bf30ddb4b7a427cf336252cab57f57f7-libxml2-2.11.4.tar.xz"; 526 } 527 { 528 + name = "libxslt-1.1.38.tar.xz"; 529 + url = "https://dev-www.libreoffice.org/src/libxslt-1.1.38.tar.xz"; 530 + sha256 = "1f32450425819a09acaff2ab7a5a7f8a2ec7956e505d7beeb45e843d0e1ecab1"; 531 md5 = ""; 532 + md5name = "1f32450425819a09acaff2ab7a5a7f8a2ec7956e505d7beeb45e843d0e1ecab1-libxslt-1.1.38.tar.xz"; 533 } 534 { 535 name = "lp_solve_5.5.tar.gz"; ··· 553 md5name = "431434d3926f4bcce2e5c97240609983f60d7ff50df5a72083934759bb863f7b-mariadb-connector-c-3.1.8-src.tar.gz"; 554 } 555 { 556 + name = "mdds-2.1.1.tar.xz"; 557 + url = "https://dev-www.libreoffice.org/src/mdds-2.1.1.tar.xz"; 558 + sha256 = "1483d90cefb8aa4563c4d0a85cb7b243aa95217d235d422e9ca6722fd5b97e56"; 559 md5 = ""; 560 + md5name = "1483d90cefb8aa4563c4d0a85cb7b243aa95217d235d422e9ca6722fd5b97e56-mdds-2.1.1.tar.xz"; 561 } 562 { 563 name = "mDNSResponder-878.200.35.tar.gz"; ··· 581 md5name = "e8750123a78d61b943cef78b7736c8a7f20bb0a649aa112402124fba794fc21c-libmwaw-0.3.21.tar.xz"; 582 } 583 { 584 + name = "mythes-1.2.5.tar.xz"; 585 + url = "https://dev-www.libreoffice.org/src/mythes-1.2.5.tar.xz"; 586 + sha256 = "19279f70707bbe5ffa619f2dc319f888cec0c4a8d339dc0a21330517bd6f521d"; 587 + md5 = ""; 588 + md5name = "19279f70707bbe5ffa619f2dc319f888cec0c4a8d339dc0a21330517bd6f521d-mythes-1.2.5.tar.xz"; 589 } 590 { 591 + name = "nss-3.90-with-nspr-4.35.tar.gz"; 592 + url = "https://dev-www.libreoffice.org/src/nss-3.90-with-nspr-4.35.tar.gz"; 593 + sha256 = "f78ab1d911cae8bbc94758fb3bd0f731df4087423a4ff5db271ba65381f6b739"; 594 md5 = ""; 595 + md5name = "f78ab1d911cae8bbc94758fb3bd0f731df4087423a4ff5db271ba65381f6b739-nss-3.90-with-nspr-4.35.tar.gz"; 596 } 597 { 598 name = "libodfgen-0.1.8.tar.xz"; ··· 616 md5name = "8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar"; 617 } 618 { 619 + name = "openldap-2.6.6.tgz"; 620 + url = "https://dev-www.libreoffice.org/src/openldap-2.6.6.tgz"; 621 + sha256 = "082e998cf542984d43634442dbe11da860759e510907152ea579bdc42fe39ea0"; 622 md5 = ""; 623 + md5name = "082e998cf542984d43634442dbe11da860759e510907152ea579bdc42fe39ea0-openldap-2.6.6.tgz"; 624 } 625 { 626 + name = "openssl-3.0.10.tar.gz"; 627 + url = "https://dev-www.libreoffice.org/src/openssl-3.0.10.tar.gz"; 628 + sha256 = "1761d4f5b13a1028b9b6f3d4b8e17feb0cedc9370f6afe61d7193d2cdce83323"; 629 md5 = ""; 630 + md5name = "1761d4f5b13a1028b9b6f3d4b8e17feb0cedc9370f6afe61d7193d2cdce83323-openssl-3.0.10.tar.gz"; 631 } 632 { 633 + name = "liborcus-0.18.1.tar.xz"; 634 + url = "https://dev-www.libreoffice.org/src/liborcus-0.18.1.tar.xz"; 635 + sha256 = "6006b9f1576315e313df715a7e72a17f3e0b17d7b6bd119cfa8a0b608ce971eb"; 636 md5 = ""; 637 + md5name = "6006b9f1576315e313df715a7e72a17f3e0b17d7b6bd119cfa8a0b608ce971eb-liborcus-0.18.1.tar.xz"; 638 } 639 { 640 name = "libpagemaker-0.0.4.tar.xz"; ··· 644 md5name = "66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d-libpagemaker-0.0.4.tar.xz"; 645 } 646 { 647 + name = "pdfium-5778.tar.bz2"; 648 + url = "https://dev-www.libreoffice.org/src/pdfium-5778.tar.bz2"; 649 + sha256 = "b1052ff24e9ffb11af017c444bb0f6ad508d64c9a0fb88cacb0e8210245dde06"; 650 md5 = ""; 651 + md5name = "b1052ff24e9ffb11af017c444bb0f6ad508d64c9a0fb88cacb0e8210245dde06-pdfium-5778.tar.bz2"; 652 } 653 { 654 name = "pixman-0.42.2.tar.gz"; ··· 658 md5name = "ea1480efada2fd948bc75366f7c349e1c96d3297d09a3fe62626e38e234a625e-pixman-0.42.2.tar.gz"; 659 } 660 { 661 + name = "libpng-1.6.40.tar.xz"; 662 + url = "https://dev-www.libreoffice.org/src/libpng-1.6.40.tar.xz"; 663 + sha256 = "535b479b2467ff231a3ec6d92a525906fb8ef27978be4f66dbe05d3f3a01b3a1"; 664 md5 = ""; 665 + md5name = "535b479b2467ff231a3ec6d92a525906fb8ef27978be4f66dbe05d3f3a01b3a1-libpng-1.6.40.tar.xz"; 666 } 667 { 668 + name = "tiff-4.5.1.tar.xz"; 669 + url = "https://dev-www.libreoffice.org/src/tiff-4.5.1.tar.xz"; 670 + sha256 = "3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a"; 671 md5 = ""; 672 + md5name = "3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a-tiff-4.5.1.tar.xz"; 673 } 674 { 675 + name = "poppler-23.06.0.tar.xz"; 676 + url = "https://dev-www.libreoffice.org/src/poppler-23.06.0.tar.xz"; 677 + sha256 = "d38c6b2f31c8f6f3727fb60a011a0e6c567ebf56ef1ccad36263ca9ed6448a65"; 678 md5 = ""; 679 + md5name = "d38c6b2f31c8f6f3727fb60a011a0e6c567ebf56ef1ccad36263ca9ed6448a65-poppler-23.06.0.tar.xz"; 680 } 681 { 682 + name = "poppler-data-0.4.12.tar.gz"; 683 + url = "https://dev-www.libreoffice.org/src/poppler-data-0.4.12.tar.gz"; 684 + sha256 = "c835b640a40ce357e1b83666aabd95edffa24ddddd49b8daff63adb851cdab74"; 685 md5 = ""; 686 + md5name = "c835b640a40ce357e1b83666aabd95edffa24ddddd49b8daff63adb851cdab74-poppler-data-0.4.12.tar.gz"; 687 } 688 { 689 + name = "postgresql-13.11.tar.bz2"; 690 + url = "https://dev-www.libreoffice.org/src/postgresql-13.11.tar.bz2"; 691 + sha256 = "4992ff647203566b670d4e54dc5317499a26856c93576d0ea951bdf6bee50bfb"; 692 md5 = ""; 693 + md5name = "4992ff647203566b670d4e54dc5317499a26856c93576d0ea951bdf6bee50bfb-postgresql-13.11.tar.bz2"; 694 } 695 { 696 + name = "Python-3.8.18.tar.xz"; 697 + url = "https://dev-www.libreoffice.org/src/Python-3.8.18.tar.xz"; 698 + sha256 = "3ffb71cd349a326ba7b2fadc7e7df86ba577dd9c4917e52a8401adbda7405e3f"; 699 md5 = ""; 700 + md5name = "3ffb71cd349a326ba7b2fadc7e7df86ba577dd9c4917e52a8401adbda7405e3f-Python-3.8.18.tar.xz"; 701 } 702 { 703 name = "libqxp-0.0.2.tar.xz"; ··· 742 md5name = "798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip"; 743 } 744 { 745 + name = "skia-m111-a31e897fb3dcbc96b2b40999751611d029bf5404.tar.xz"; 746 + url = "https://dev-www.libreoffice.org/src/skia-m111-a31e897fb3dcbc96b2b40999751611d029bf5404.tar.xz"; 747 + sha256 = "0d08a99ed46cde43b5ad2672b5d8770c8eb85d0d26cb8f1f85fd9befe1e9ceb9"; 748 md5 = ""; 749 + md5name = "0d08a99ed46cde43b5ad2672b5d8770c8eb85d0d26cb8f1f85fd9befe1e9ceb9-skia-m111-a31e897fb3dcbc96b2b40999751611d029bf5404.tar.xz"; 750 } 751 { 752 name = "libstaroffice-0.0.7.tar.xz"; ··· 770 md5name = "82c818be771f242388457aa8c807e4b52aa84dc22b21c6c56184a6b4cbb085e6-twaindsm_2.4.1.orig.tar.gz"; 771 } 772 { 773 name = "libvisio-0.1.7.tar.xz"; 774 url = "https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz"; 775 sha256 = "8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c"; ··· 784 md5name = "2465b0b662fdc5d4e3bebcdc9a79027713fb629ca2bff04a3c9251fdec42dd09-libwpd-0.10.3.tar.xz"; 785 } 786 { 787 + name = "libwpg-0.3.4.tar.xz"; 788 + url = "https://dev-www.libreoffice.org/src/libwpg-0.3.4.tar.xz"; 789 + sha256 = "b55fda9440d1e070630eb2487d8b8697cf412c214a27caee9df69cec7c004de3"; 790 md5 = ""; 791 + md5name = "b55fda9440d1e070630eb2487d8b8697cf412c214a27caee9df69cec7c004de3-libwpg-0.3.4.tar.xz"; 792 } 793 { 794 name = "libwps-0.4.12.tar.xz"; ··· 819 md5name = "27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22-libzmf-0.0.2.tar.xz"; 820 } 821 { 822 + name = "zxing-cpp-2.0.0.tar.gz"; 823 + url = "https://dev-www.libreoffice.org/src/zxing-cpp-2.0.0.tar.gz"; 824 + sha256 = "12b76b7005c30d34265fc20356d340da179b0b4d43d2c1b35bcca86776069f76"; 825 md5 = ""; 826 + md5name = "12b76b7005c30d34265fc20356d340da179b0b4d43d2c1b35bcca86776069f76-zxing-cpp-2.0.0.tar.gz"; 827 } 828 ]
+4
pkgs/applications/office/libreoffice/src-still/help.nix
···
··· 1 + { 2 + sha256 = "0lpgcwq03qxvhbl5b9ndaz0cwswd6jin1rfm6hv3kr8q4l52jgb3"; 3 + url = "https://download.documentfoundation.org/libreoffice/src/7.5.7/libreoffice-help-7.5.7.1.tar.xz"; 4 + }
+4
pkgs/applications/office/libreoffice/src-still/main.nix
···
··· 1 + { 2 + sha256 = "041bs79539w61yqmy971rfpf8qvfs4cl2m2fdjv7n1nqf6a2z4v5"; 3 + url = "https://download.documentfoundation.org/libreoffice/src/7.5.7/libreoffice-7.5.7.1.tar.xz"; 4 + }
-21
pkgs/applications/office/libreoffice/src-still/override.nix
··· 1 - { lib, kdeIntegration, commonsLogging, ... }: 2 - attrs: 3 - { 4 - postConfigure = attrs.postConfigure + '' 5 - sed -e '/CPPUNIT_TEST(Import_Export_Import);/d' -i './sw/qa/inc/swmodeltestbase.hxx' 6 - sed -e '/CPPUNIT_ASSERT(!bRTL);/d' -i './vcl/qa/cppunit/text.cxx' 7 - 8 - sed -e '/CPPUNIT_ASSERT_EQUAL(0, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 9 - sed -e '/CPPUNIT_ASSERT_EQUAL(4, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 10 - sed -e '/CPPUNIT_ASSERT_EQUAL(11, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 11 - sed -e '/CPPUNIT_ASSERT_EQUAL(18, nMinRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 12 - 13 - sed -e '/CPPUNIT_ASSERT_EQUAL(3, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 14 - sed -e '/CPPUNIT_ASSERT_EQUAL(9, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 15 - sed -e '/CPPUNIT_ASSERT_EQUAL(17, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 16 - sed -e '/CPPUNIT_ASSERT_EQUAL(22, nEndRunPos);/d' -i './vcl/qa/cppunit/text.cxx' 17 - ''; 18 - configureFlags = attrs.configureFlags; 19 - 20 - patches = attrs.patches or []; 21 - }
···
-36
pkgs/applications/office/libreoffice/src-still/primary.nix
··· 1 - { fetchurl }: 2 - 3 - rec { 4 - fetchSrc = {name, hash}: fetchurl { 5 - url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz"; 6 - inherit hash; 7 - }; 8 - 9 - major = "7"; 10 - minor = "4"; 11 - patch = "7"; 12 - tweak = "2"; 13 - 14 - subdir = "${major}.${minor}.${patch}"; 15 - 16 - version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; 17 - 18 - src = fetchurl { 19 - url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 - hash = "sha256-dD2R8qE4png4D6eo7LWyQB2ZSwZ7MwdQ8DrY9SOi+yA="; 21 - }; 22 - 23 - # FIXME rename 24 - translations = fetchSrc { 25 - name = "translations"; 26 - hash = "sha256-7wea0EClmvwcPvgQDGagkOF7eBVvYTZScCEEpirdXnE="; 27 - }; 28 - 29 - # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from 30 - # it and LibreOffice can use these by pointing DICPATH environment variable at the hunspell directory 31 - 32 - help = fetchSrc { 33 - name = "help"; 34 - hash = "sha256-vcQWE3mBZx2sBQ9KzTh6zM7277mK9twfvyESTzTiII8="; 35 - }; 36 - }
···
+4
pkgs/applications/office/libreoffice/src-still/translations.nix
···
··· 1 + { 2 + sha256 = "1zxhnn8sslrlyb1cyg319slza2kn6mcc4h3li9ssnlfzkrzvxhc4"; 3 + url = "https://download.documentfoundation.org/libreoffice/src/7.5.7/libreoffice-translations-7.5.7.1.tar.xz"; 4 + }
+1
pkgs/applications/office/libreoffice/src-still/version.nix
···
··· 1 + "7.5.7.1"
+74
pkgs/applications/office/libreoffice/update.sh
···
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p python3 pup curl jq nix 3 + 4 + set -euo pipefail 5 + echoerr() { echo "$@" 1>&2; } 6 + 7 + fname="$1" 8 + echoerr got fname $fname 9 + shift 10 + 11 + variant="$1" 12 + # See comment near version_major variable 13 + if [[ $variant == fresh ]]; then 14 + head_tail=head 15 + elif [[ $variant == still ]]; then 16 + head_tail=tail 17 + else 18 + echoerr got unknown variant $variant 19 + exit 3 20 + fi 21 + echoerr got variant $variant 22 + shift 23 + 24 + # Not totally needed, but makes it easy to run the update in case tis folder is 25 + # deleted. 26 + mkdir -p "$(dirname $fname)/src-$variant" 27 + cd "$(dirname $fname)/src-$variant" 28 + 29 + # The pup command prints both fresh and still versions one after another, and 30 + # we use either head -1 or tail -1 to get the right version, per the if elif 31 + # above. 32 + version_major="$(curl --silent https://www.libreoffice.org/download/download-libreoffice/ |\ 33 + pup '.dl_version_number text{}' | $head_tail -1)" 34 + echoerr got from website ${variant}_version $version_major 35 + baseurl=https://download.documentfoundation.org/libreoffice/src/$version_major 36 + tarballs=($(curl --silent $baseurl/ |\ 37 + pup 'table json{}' |\ 38 + jq --raw-output '.. | .href? | strings' |\ 39 + grep "$version_major.*.tar.xz$")) 40 + 41 + full_version="$(echo ${tarballs[0]} | sed -e 's/^libreoffice-//' -e 's/.tar.xz$//')" 42 + echoerr full version is $full_version 43 + echo \"$full_version\" > version.nix 44 + 45 + for t in help translations; do 46 + echo "{" > $t.nix 47 + echo " sha256 = "\"$(nix-prefetch-url $baseurl/libreoffice-$t-$full_version.tar.xz)'";' >> $t.nix 48 + echo " url = "\"$baseurl/libreoffice-$t-$full_version.tar.xz'";' >> $t.nix 49 + echo "}" >> $t.nix 50 + done 51 + 52 + # Out of loop nix-prefetch-url, because there is no $t, and we want the output 53 + # path as well, to get the download.lst file from there afterwards. 54 + main_path_hash=($(nix-prefetch-url --print-path $baseurl/libreoffice-$full_version.tar.xz)) 55 + echo "{" > main.nix 56 + echo " sha256 = "\"${main_path_hash[0]}'";' >> main.nix 57 + echo " url = "\"$baseurl/libreoffice-$full_version.tar.xz'";' >> main.nix 58 + echo "}" >> main.nix 59 + echoerr got filename ${main_path_hash[1]} 60 + 61 + # Environment variable required by ../generate-libreoffice-srcs.py 62 + export downloadList=/tmp/nixpkgs-libreoffice-update-download-$full_version.lst 63 + # Need to extract the file only if it doesn't exist, otherwise spare time be 64 + # skipping this. 65 + if [[ ! -f "$downloadList" ]]; then 66 + tar --extract \ 67 + --file=${main_path_hash[1]} \ 68 + libreoffice-$full_version/download.lst \ 69 + -O > $downloadList 70 + else 71 + echoerr relying on previously downloaded downloadList file 72 + fi 73 + cd .. 74 + python3 ./generate-libreoffice-srcs.py > src-$variant/deps.nix
+3 -1
pkgs/applications/office/libreoffice/wrapper.nix
··· 19 }: 20 21 let 22 - inherit (unwrapped.srcs.primary) major minor; 23 24 makeWrapperArgs = builtins.concatStringsSep " " ([ 25 "--set" "GDK_PIXBUF_MODULE_FILE" "${librsvg}/${gdk-pixbuf.moduleDir}.cache"
··· 19 }: 20 21 let 22 + inherit (unwrapped) version; 23 + major = lib.versions.major version; 24 + minor = lib.versions.minor version; 25 26 makeWrapperArgs = builtins.concatStringsSep " " ([ 27 "--set" "GDK_PIXBUF_MODULE_FILE" "${librsvg}/${gdk-pixbuf.moduleDir}.cache"
+3 -2
pkgs/applications/science/math/qalculate-gtk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, intltool, autoreconfHook, pkg-config, libqalculate, gtk3, curl, wrapGAppsHook }: 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "qalculate-gtk"; ··· 13 14 hardeningDisable = [ "format" ]; 15 16 - nativeBuildInputs = [ intltool pkg-config autoreconfHook wrapGAppsHook ]; 17 buildInputs = [ libqalculate gtk3 curl ]; 18 enableParallelBuilding = true; 19
··· 1 + { lib, stdenv, fetchFromGitHub, intltool, autoreconfHook, pkg-config, libqalculate, gtk3, curl, wrapGAppsHook, desktopToDarwinBundle }: 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "qalculate-gtk"; ··· 13 14 hardeningDisable = [ "format" ]; 15 16 + nativeBuildInputs = [ intltool pkg-config autoreconfHook wrapGAppsHook ] 17 + ++ lib.optionals stdenv.isDarwin [ desktopToDarwinBundle ]; 18 buildInputs = [ libqalculate gtk3 curl ]; 19 enableParallelBuilding = true; 20
+3 -13
pkgs/applications/virtualization/catatonit/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "catatonit"; 5 - version = "0.1.7"; 6 7 src = fetchFromGitHub { 8 owner = "openSUSE"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-jX4fYC/rpfd3ro2UZ6OEu4kU5wpusOwmEVPWEjxwlW4="; 12 }; 13 14 - patches = [ 15 - # Pull the fix pending upstream inclusion to support automake-1.16.5: 16 - # https://github.com/openSUSE/catatonit/pull/18 17 - (fetchpatch { 18 - name = "automake-1.16.5.patch"; 19 - url = "https://github.com/openSUSE/catatonit/commit/99bb9048f532257f3a2c3856cfa19fe957ab6cec.patch"; 20 - sha256 = "sha256-ooxVjtWXJddQiBvO9I5aRyLeL8y3ecxW/Kvtfg/bpRA="; 21 - }) 22 - ]; 23 - 24 nativeBuildInputs = [ autoreconfHook ]; 25 buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; 26 ··· 37 meta = with lib; { 38 description = "A container init that is so simple it's effectively brain-dead"; 39 homepage = "https://github.com/openSUSE/catatonit"; 40 - license = licenses.gpl3Plus; 41 maintainers = with maintainers; [ erosennin ] ++ teams.podman.members; 42 platforms = platforms.linux; 43 };
··· 2 3 stdenv.mkDerivation rec { 4 pname = "catatonit"; 5 + version = "0.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "openSUSE"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-AqJURf4OrPHfTm5joA3oPXH4McE1k0ouvDXAF3jiwgk="; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ]; 16 ··· 27 meta = with lib; { 28 description = "A container init that is so simple it's effectively brain-dead"; 29 homepage = "https://github.com/openSUSE/catatonit"; 30 + license = licenses.gpl2Plus; 31 maintainers = with maintainers; [ erosennin ] ++ teams.podman.members; 32 platforms = platforms.linux; 33 };
+3 -3
pkgs/applications/virtualization/nixpacks/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "nixpacks"; 5 - version = "1.15.0"; 6 7 src = fetchFromGitHub { 8 owner = "railwayapp"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-iZOcpVvhHbf8u2NrnwAIg7jlTN/afeBi2+jbsNYKlz4="; 12 }; 13 14 - cargoHash = "sha256-cysxQ4qc70zpEOpL5bccMHdEDGbdjzbGftTMb58RrYc="; 15 16 # skip test due FHS dependency 17 doCheck = false;
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "nixpacks"; 5 + version = "1.17.0"; 6 7 src = fetchFromGitHub { 8 owner = "railwayapp"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ulzSxS5yukkLCykdsxl9nNRnakQ1UitJAHlB9CwLhsM="; 12 }; 13 14 + cargoHash = "sha256-nNnFbvHsew7jtTBpD3eKXgjkc1arzjWMZWwj96Qmgcw="; 15 16 # skip test due FHS dependency 17 doCheck = false;
+2 -2
pkgs/applications/virtualization/podman/default.nix
··· 62 in 63 buildGoModule rec { 64 pname = "podman"; 65 - version = "4.6.2"; 66 67 src = fetchFromGitHub { 68 owner = "containers"; 69 repo = "podman"; 70 rev = "v${version}"; 71 - hash = "sha256-Zxzb7ORyugvN9mhxa0s8r0ch16Ndbm3Z1JCsQcwbF6g="; 72 }; 73 74 patches = [
··· 62 in 63 buildGoModule rec { 64 pname = "podman"; 65 + version = "4.7.0"; 66 67 src = fetchFromGitHub { 68 owner = "containers"; 69 repo = "podman"; 70 rev = "v${version}"; 71 + hash = "sha256-xbU2F/QYtTKeZacTmwKDfIGuUg9VStEO/jkpChK0DyU="; 72 }; 73 74 patches = [
+18 -15
pkgs/applications/virtualization/podman/rm-podman-mac-helper-msg.patch
··· 1 - diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go 2 - index a118285f7..d775f0099 100644 3 - --- a/pkg/machine/qemu/machine.go 4 - +++ b/pkg/machine/qemu/machine.go 5 - @@ -1560,11 +1560,6 @@ func (v *MachineVM) waitAPIAndPrintInfo(forwardState machine.APIForwardingState, 6 - case machine.NotInstalled: 7 - fmt.Printf("\nThe system helper service is not installed; the default Docker API socket\n") 8 - fmt.Printf("address can't be used by podman. ") 9 - - if helper := findClaimHelper(); len(helper) > 0 { 10 - - fmt.Printf("If you would like to install it run the\nfollowing commands:\n") 11 - - fmt.Printf("\n\tsudo %s install\n", helper) 12 - - fmt.Printf("\tpodman machine stop%s; podman machine start%s\n\n", suffix, suffix) 13 - - } 14 - case machine.MachineLocal: 15 fmt.Printf("\nAnother process was listening on the default Docker API socket address.\n") 16 - case machine.ClaimUnsupported:
··· 1 + diff --git a/pkg/machine/machine_common.go b/pkg/machine/machine_common.go 2 + index 649748947..a981d93bf 100644 3 + --- a/pkg/machine/machine_common.go 4 + +++ b/pkg/machine/machine_common.go 5 + @@ -127,14 +127,6 @@ address can't be used by podman. ` 6 + 7 + if len(helper) < 1 { 8 + fmt.Print(fmtString) 9 + - } else { 10 + - fmtString += `If you would like to install it run the\nfollowing commands: 11 + - 12 + - sudo %s install 13 + - podman machine stop%[1]s; podman machine start%[1]s 14 + - 15 + - ` 16 + - fmt.Printf(fmtString, helper, suffix) 17 + } 18 + case MachineLocal: 19 fmt.Printf("\nAnother process was listening on the default Docker API socket address.\n")
+61
pkgs/by-name/br/bruno/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , autoPatchelfHook 5 + , dpkg 6 + , wrapGAppsHook 7 + , alsa-lib 8 + , gtk3 9 + , mesa 10 + , nspr 11 + , nss 12 + , systemd 13 + , nix-update-script 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "bruno"; 18 + version = "0.17.0"; 19 + 20 + src = fetchurl { 21 + url = "https://github.com/usebruno/bruno/releases/download/v${version}/bruno_${version}_amd64_linux.deb"; 22 + hash = "sha256-4FF9SEgWuIPQSarOBTaEvgdgRTkR1caRYr/bjfFmTLE="; 23 + }; 24 + 25 + nativeBuildInputs = [ autoPatchelfHook dpkg wrapGAppsHook ]; 26 + 27 + buildInputs = [ 28 + alsa-lib 29 + gtk3 30 + mesa 31 + nspr 32 + nss 33 + ]; 34 + 35 + runtimeDependencies = [ (lib.getLib systemd) ]; 36 + 37 + installPhase = '' 38 + runHook preInstall 39 + mkdir -p "$out/bin" 40 + cp -R opt $out 41 + cp -R "usr/share" "$out/share" 42 + ln -s "$out/opt/Bruno/bruno" "$out/bin/bruno" 43 + chmod -R g-w "$out" 44 + runHook postInstall 45 + ''; 46 + 47 + postFixup = '' 48 + substituteInPlace "$out/share/applications/bruno.desktop" \ 49 + --replace "/opt/Bruno/bruno" "$out/bin/bruno" 50 + ''; 51 + 52 + passthru.updateScript = nix-update-script { }; 53 + 54 + meta = with lib; { 55 + description = "Open-source IDE For exploring and testing APIs."; 56 + homepage = "https://www.usebruno.com"; 57 + license = licenses.mit; 58 + maintainers = with maintainers; [ water-sucks lucasew ]; 59 + platforms = [ "x86_64-linux" ]; 60 + }; 61 + }
+2 -2
pkgs/data/fonts/sarasa-gothic/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "sarasa-gothic"; 5 - version = "0.42.0"; 6 7 src = fetchurl { 8 # Use the 'ttc' files here for a smaller closure size. 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/sarasa-gothic-ttc-${version}.7z"; 11 - hash = "sha256-BZWOQQhkK+bQhS5MFIJ81unGDevp8WptPA/dOmf12xs="; 12 }; 13 14 sourceRoot = ".";
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "sarasa-gothic"; 5 + version = "0.42.1"; 6 7 src = fetchurl { 8 # Use the 'ttc' files here for a smaller closure size. 9 # (Using 'ttf' files gives a closure size about 15x larger, as of November 2021.) 10 url = "https://github.com/be5invis/Sarasa-Gothic/releases/download/v${version}/sarasa-gothic-ttc-${version}.7z"; 11 + hash = "sha256-e6ig+boWzYiOzENkIsj/z9FFt2pZc+T0dYoFoeONMFM="; 12 }; 13 14 sourceRoot = ".";
+1 -1
pkgs/desktops/gnome-2/default.nix
··· 44 } // lib.optionalAttrs config.allowAliases { 45 inherit (pkgs) 46 # GTK Libs 47 - glib glibmm atk atkmm cairo pango pangomm gdk_pixbuf gtkmm2 libcanberra-gtk2 48 49 # Included for backwards compatibility 50 libsoup libwnck2 gtk-doc gnome-doc-utils
··· 44 } // lib.optionalAttrs config.allowAliases { 45 inherit (pkgs) 46 # GTK Libs 47 + glib glibmm atk atkmm cairo pango pangomm gtkmm2 libcanberra-gtk2 48 49 # Included for backwards compatibility 50 libsoup libwnck2 gtk-doc gnome-doc-utils
+13 -29
pkgs/development/compilers/intel-graphics-compiler/default.nix
··· 5 , runCommandLocal 6 , bison 7 , flex 8 - , llvmPackages_11 9 , opencl-clang 10 , python3 11 , spirv-tools ··· 19 vc_intrinsics_src = fetchFromGitHub { 20 owner = "intel"; 21 repo = "vc-intrinsics"; 22 - rev = "v0.11.0"; 23 - sha256 = "sha256-74JBW7qU8huSqwqgxNbvbGj1DlJJThgGhb3owBYmhvI="; 24 }; 25 26 - llvmPkgs = llvmPackages_11 // { 27 - spirv-llvm-translator = spirv-llvm-translator.override { llvm = llvm; }; 28 - } // lib.optionalAttrs buildWithPatches opencl-clang; 29 - 30 - inherit (llvmPackages_11) lld llvm; 31 - inherit (llvmPkgs) clang libclang spirv-llvm-translator; 32 in 33 34 stdenv.mkDerivation rec { 35 pname = "intel-graphics-compiler"; 36 - version = "1.0.12812.26"; 37 38 src = fetchFromGitHub { 39 owner = "intel"; 40 repo = "intel-graphics-compiler"; 41 rev = "igc-${version}"; 42 - sha256 = "sha256-KpaDaDYVp40H7OscDGUpzEMgIOIk397ANi+8sDk4Wow="; 43 }; 44 45 - nativeBuildInputs = [ cmake bison flex python3 ]; 46 47 - buildInputs = [ spirv-headers spirv-tools spirv-llvm-translator llvm lld ]; 48 49 strictDeps = true; 50 ··· 52 doCheck = false; 53 54 postPatch = '' 55 - substituteInPlace external/SPIRV-Tools/CMakeLists.txt \ 56 - --replace '$'''{SPIRV-Tools_DIR}../../..' \ 57 - '${spirv-tools}' \ 58 - --replace 'SPIRV-Headers_INCLUDE_DIR "/usr/include"' \ 59 - 'SPIRV-Headers_INCLUDE_DIR "${spirv-headers}/include"' \ 60 - --replace 'set_target_properties(SPIRV-Tools' \ 61 - 'set_target_properties(SPIRV-Tools-shared' \ 62 - --replace 'IGC_BUILD__PROJ__SPIRV-Tools SPIRV-Tools' \ 63 - 'IGC_BUILD__PROJ__SPIRV-Tools SPIRV-Tools-shared' 64 substituteInPlace IGC/AdaptorOCL/igc-opencl.pc.in \ 65 --replace '/@CMAKE_INSTALL_INCLUDEDIR@' "/include" \ 66 --replace '/@CMAKE_INSTALL_LIBDIR@' "/lib" ··· 71 prebuilds = runCommandLocal "igc-cclang-prebuilds" { } '' 72 mkdir $out 73 ln -s ${clang}/bin/clang $out/ 74 - ln -s clang $out/clang-${lib.versions.major (lib.getVersion clang)} 75 ln -s ${opencl-clang}/lib/* $out/ 76 ln -s ${lib.getLib libclang}/lib/clang/${lib.getVersion clang}/include/opencl-c.h $out/ 77 ln -s ${lib.getLib libclang}/lib/clang/${lib.getVersion clang}/include/opencl-c-base.h $out/ 78 ''; 79 80 cmakeFlags = [ 81 - "-Wno-dev" 82 "-DVC_INTRINSICS_SRC=${vc_intrinsics_src}" 83 - "-DIGC_OPTION__SPIRV_TOOLS_MODE=Prebuilds" 84 "-DCCLANG_BUILD_PREBUILDS=ON" 85 "-DCCLANG_BUILD_PREBUILDS_DIR=${prebuilds}" 86 - "-DIGC_PREFERRED_LLVM_VERSION=${lib.getVersion llvm}" 87 ]; 88 - 89 - # causes redefinition of _FORTIFY_SOURCE 90 - hardeningDisable = [ "fortify3" ]; 91 92 meta = with lib; { 93 homepage = "https://github.com/intel/intel-graphics-compiler";
··· 5 , runCommandLocal 6 , bison 7 , flex 8 + , llvmPackages_14 9 , opencl-clang 10 , python3 11 , spirv-tools ··· 19 vc_intrinsics_src = fetchFromGitHub { 20 owner = "intel"; 21 repo = "vc-intrinsics"; 22 + rev = "v0.13.0"; 23 + hash = "sha256-A9G1PH0WGdxU2u/ODrou53qF9kvrmE0tJSl9cFIOus0="; 24 }; 25 26 + inherit (llvmPackages_14) lld llvm; 27 + inherit (if buildWithPatches then opencl-clang else llvmPackages_14) clang libclang; 28 + spirv-llvm-translator' = spirv-llvm-translator.override { inherit llvm; }; 29 in 30 31 stdenv.mkDerivation rec { 32 pname = "intel-graphics-compiler"; 33 + version = "1.0.14828.8"; 34 35 src = fetchFromGitHub { 36 owner = "intel"; 37 repo = "intel-graphics-compiler"; 38 rev = "igc-${version}"; 39 + hash = "sha256-BGmZVBEw7XlgbQcWgRK+qbJS9U4Sm9G8g9m0GRUhmCI="; 40 }; 41 42 + nativeBuildInputs = [ bison cmake flex python3 ]; 43 44 + buildInputs = [ lld llvm spirv-headers spirv-llvm-translator' spirv-tools ]; 45 46 strictDeps = true; 47 ··· 49 doCheck = false; 50 51 postPatch = '' 52 substituteInPlace IGC/AdaptorOCL/igc-opencl.pc.in \ 53 --replace '/@CMAKE_INSTALL_INCLUDEDIR@' "/include" \ 54 --replace '/@CMAKE_INSTALL_LIBDIR@' "/lib" ··· 59 prebuilds = runCommandLocal "igc-cclang-prebuilds" { } '' 60 mkdir $out 61 ln -s ${clang}/bin/clang $out/ 62 ln -s ${opencl-clang}/lib/* $out/ 63 ln -s ${lib.getLib libclang}/lib/clang/${lib.getVersion clang}/include/opencl-c.h $out/ 64 ln -s ${lib.getLib libclang}/lib/clang/${lib.getVersion clang}/include/opencl-c-base.h $out/ 65 ''; 66 67 cmakeFlags = [ 68 "-DVC_INTRINSICS_SRC=${vc_intrinsics_src}" 69 "-DCCLANG_BUILD_PREBUILDS=ON" 70 "-DCCLANG_BUILD_PREBUILDS_DIR=${prebuilds}" 71 + "-DIGC_OPTION__SPIRV_TOOLS_MODE=Prebuilds" 72 + "-DIGC_OPTION__VC_INTRINSICS_MODE=Source" 73 + "-Wno-dev" 74 ]; 75 76 meta = with lib; { 77 homepage = "https://github.com/intel/intel-graphics-compiler";
+2 -2
pkgs/development/interpreters/erlang/26.nix
··· 1 { lib, mkDerivation }: 2 3 mkDerivation { 4 - version = "26.1"; 5 - sha256 = "sha256-GECxenOxwZ0A7cY5Z/amthNezGVPsmZWB5gHayy78cI="; 6 } 7
··· 1 { lib, mkDerivation }: 2 3 mkDerivation { 4 + version = "26.1.1"; 5 + sha256 = "sha256-Y0sArUFkGxlAAgrgUxn5Rjnd72geG08VO9FBxg/fJAg="; 6 } 7
+4
pkgs/development/libraries/elpa/default.nix
··· 41 substituteInPlace Makefile.am --replace '#!/bin/bash' '#!${stdenv.shell}' 42 ''; 43 44 nativeBuildInputs = [ autoreconfHook perl ]; 45 46 buildInputs = [ mpi blas lapack scalapack ] ··· 73 ++ lib.optional (!stdenv.hostPlatform.isx86_64) "--disable-sse-assembly" 74 ++ lib.optional stdenv.hostPlatform.isx86_64 "--enable-sse-assembly" 75 ++ lib.optionals enableCuda [ "--enable-nvidia-gpu" "--with-NVIDIA-GPU-compute-capability=${nvidiaArch}" ]; 76 77 doCheck = true; 78
··· 41 substituteInPlace Makefile.am --replace '#!/bin/bash' '#!${stdenv.shell}' 42 ''; 43 44 + outputs = [ "out" "doc" "man" "dev" ]; 45 + 46 nativeBuildInputs = [ autoreconfHook perl ]; 47 48 buildInputs = [ mpi blas lapack scalapack ] ··· 75 ++ lib.optional (!stdenv.hostPlatform.isx86_64) "--disable-sse-assembly" 76 ++ lib.optional stdenv.hostPlatform.isx86_64 "--enable-sse-assembly" 77 ++ lib.optionals enableCuda [ "--enable-nvidia-gpu" "--with-NVIDIA-GPU-compute-capability=${nvidiaArch}" ]; 78 + 79 + enableParallelBuilding = true; 80 81 doCheck = true; 82
+2 -2
pkgs/development/libraries/mdds/default.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "mdds"; 11 - version = "2.0.3"; 12 13 src = fetchFromGitLab { 14 owner = "mdds"; 15 repo = "mdds"; 16 rev = finalAttrs.version; 17 - hash = "sha256-Y9uBJKM34UTEj/3c1w69QHhvwFcMNlAohEco0O0B+xI="; 18 }; 19 20 nativeBuildInputs = [ autoreconfHook ];
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "mdds"; 11 + version = "2.1.1"; 12 13 src = fetchFromGitLab { 14 owner = "mdds"; 15 repo = "mdds"; 16 rev = finalAttrs.version; 17 + hash = "sha256-a412LpgDiYM8TMToaUrTlHtblYS1HehzrDOwvIAAxiA="; 18 }; 19 20 nativeBuildInputs = [ autoreconfHook ];
+62 -50
pkgs/development/libraries/opencl-clang/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , fetchpatch 5 , cmake 6 , git 7 - , llvmPackages_11 8 , spirv-llvm-translator 9 , buildWithPatches ? true 10 }: 11 12 let 13 - llvmPkgs = llvmPackages_11 // { 14 - inherit spirv-llvm-translator; 15 - }; 16 - 17 addPatches = component: pkg: pkg.overrideAttrs (oldAttrs: { 18 postPatch = oldAttrs.postPatch or "" + '' 19 for p in ${passthru.patchesOut}/${component}/*; do ··· 22 ''; 23 }); 24 25 passthru = rec { 26 - spirv-llvm-translator = llvmPkgs.spirv-llvm-translator.override { llvm = llvmPackages_11.llvm; }; 27 llvm = addPatches "llvm" llvmPkgs.llvm; 28 libclang = addPatches "clang" llvmPkgs.libclang; 29 ··· 34 35 patchesOut = stdenv.mkDerivation { 36 pname = "opencl-clang-patches"; 37 - inherit (library) version src patches; 38 # Clang patches assume the root is the llvm root dir 39 # but clang root in nixpkgs is the clang sub-directory 40 postPatch = '' ··· 52 }; 53 }; 54 55 - library = let 56 - inherit (llvmPackages_11) llvm; 57 - inherit (if buildWithPatches then passthru else llvmPkgs) libclang spirv-llvm-translator; 58 - in 59 - stdenv.mkDerivation { 60 - pname = "opencl-clang"; 61 - version = "unstable-2022-03-16"; 62 - 63 64 - src = fetchFromGitHub { 65 - owner = "intel"; 66 - repo = "opencl-clang"; 67 - rev = "bbdd1587f577397a105c900be114b56755d1f7dc"; 68 - sha256 = "sha256-qEZoQ6h4XAvSnJ7/gLXBb1qrzeYa6Jp6nij9VFo8MwQ="; 69 - }; 70 71 - patches = [ 72 - # Build script tries to find Clang OpenCL headers under ${llvm} 73 - # Work around it by specifying that directory manually. 74 - ./opencl-headers-dir.patch 75 - ]; 76 77 # Uses linker flags that are not supported on Darwin. 78 - postPatch = lib.optionalString stdenv.isDarwin '' 79 - sed -i -e '/SET_LINUX_EXPORTS_FILE/d' CMakeLists.txt 80 - substituteInPlace CMakeLists.txt \ 81 - --replace '-Wl,--no-undefined' "" 82 - ''; 83 84 - nativeBuildInputs = [ cmake git llvm.dev ]; 85 86 - buildInputs = [ libclang llvm spirv-llvm-translator ]; 87 88 - cmakeFlags = [ 89 - "-DPREFERRED_LLVM_VERSION=${lib.getVersion llvm}" 90 - "-DOPENCL_HEADERS_DIR=${libclang.lib}/lib/clang/${lib.getVersion libclang}/include/" 91 92 - "-DLLVMSPIRV_INCLUDED_IN_LLVM=OFF" 93 - "-DSPIRV_TRANSLATOR_DIR=${spirv-llvm-translator}" 94 - ]; 95 96 - inherit passthru; 97 98 - meta = with lib; { 99 - homepage = "https://github.com/intel/opencl-clang/"; 100 - description = "A clang wrapper library with an OpenCL-oriented API and the ability to compile OpenCL C kernels to SPIR-V modules"; 101 - license = licenses.ncsa; 102 - platforms = platforms.all; 103 - maintainers = with maintainers; [ ]; 104 - }; 105 - }; 106 - in 107 - library
··· 1 { lib 2 , stdenv 3 + , applyPatches 4 , fetchFromGitHub 5 , fetchpatch 6 , cmake 7 , git 8 + , llvmPackages_14 9 , spirv-llvm-translator 10 , buildWithPatches ? true 11 }: 12 13 let 14 addPatches = component: pkg: pkg.overrideAttrs (oldAttrs: { 15 postPatch = oldAttrs.postPatch or "" + '' 16 for p in ${passthru.patchesOut}/${component}/*; do ··· 19 ''; 20 }); 21 22 + llvmPkgs = llvmPackages_14; 23 + inherit (llvmPkgs) llvm; 24 + spirv-llvm-translator' = spirv-llvm-translator.override { inherit llvm; }; 25 + libclang = if buildWithPatches then passthru.libclang else llvmPkgs.libclang; 26 + 27 passthru = rec { 28 + spirv-llvm-translator = spirv-llvm-translator'; 29 llvm = addPatches "llvm" llvmPkgs.llvm; 30 libclang = addPatches "clang" llvmPkgs.libclang; 31 ··· 36 37 patchesOut = stdenv.mkDerivation { 38 pname = "opencl-clang-patches"; 39 + inherit version src; 40 # Clang patches assume the root is the llvm root dir 41 # but clang root in nixpkgs is the clang sub-directory 42 postPatch = '' ··· 54 }; 55 }; 56 57 + version = "unstable-2023-06-12"; 58 + src = applyPatches { 59 + src = fetchFromGitHub { 60 + owner = "intel"; 61 + repo = "opencl-clang"; 62 + # https://github.com/intel/opencl-clang/compare/ocl-open-140 63 + rev = "cf95b338d14685e4f3402ab1828bef31d48f1fd6"; 64 + hash = "sha256-To1RlQX9IJ+1zAwEXaW7ua3VNfjK9mu7pgsRPsfa8g8="; 65 + }; 66 67 + patches = [ 68 + # Build script tries to find Clang OpenCL headers under ${llvm} 69 + # Work around it by specifying that directory manually. 70 + ./opencl-headers-dir.patch 71 72 + # fix CMake throwing errors 73 + (fetchpatch { 74 + url = "https://github.com/intel/opencl-clang/commit/321e3b99c1a8d54c8475f5ae998452069cc5eb71.patch"; 75 + hash = "sha256-cATbH+AMVtcabhl3EkzAH7w3wGreUV53hQYHVUUEP4g="; 76 + }) 77 + ]; 78 79 + postPatch = '' 80 + # fix not be able to find clang from PATH 81 + substituteInPlace cl_headers/CMakeLists.txt \ 82 + --replace " NO_DEFAULT_PATH" "" 83 + '' + lib.optionalString stdenv.isDarwin '' 84 # Uses linker flags that are not supported on Darwin. 85 + sed -i -e '/SET_LINUX_EXPORTS_FILE/d' CMakeLists.txt 86 + substituteInPlace CMakeLists.txt \ 87 + --replace '-Wl,--no-undefined' "" 88 + ''; 89 + }; 90 + in 91 92 + stdenv.mkDerivation { 93 + pname = "opencl-clang"; 94 + inherit version src; 95 96 + nativeBuildInputs = [ cmake git llvm.dev ]; 97 98 + buildInputs = [ libclang llvm spirv-llvm-translator' ]; 99 100 + cmakeFlags = [ 101 + "-DPREFERRED_LLVM_VERSION=${lib.getVersion llvm}" 102 + "-DOPENCL_HEADERS_DIR=${libclang.lib}/lib/clang/${lib.getVersion libclang}/include/" 103 104 + "-DLLVMSPIRV_INCLUDED_IN_LLVM=OFF" 105 + "-DSPIRV_TRANSLATOR_DIR=${spirv-llvm-translator'}" 106 + ]; 107 108 + inherit passthru; 109 + 110 + meta = with lib; { 111 + homepage = "https://github.com/intel/opencl-clang/"; 112 + description = "A clang wrapper library with an OpenCL-oriented API and the ability to compile OpenCL C kernels to SPIR-V modules"; 113 + license = licenses.ncsa; 114 + maintainers = with maintainers; [ ]; 115 + platforms = platforms.all; 116 + # error: invalid value 'CL3.0' in '-cl-std=CL3.0' 117 + broken = stdenv.isDarwin; 118 + }; 119 + }
+2
pkgs/development/libraries/science/math/scalapack/default.nix
··· 34 sed -i '/xssep/d;/xsgsep/d;/xssyevr/d' TESTING/CMakeLists.txt 35 ''; 36 37 nativeBuildInputs = [ cmake ]; 38 nativeCheckInputs = [ openssh mpiCheckPhaseHook ]; 39 buildInputs = [ blas lapack ];
··· 34 sed -i '/xssep/d;/xsgsep/d;/xssyevr/d' TESTING/CMakeLists.txt 35 ''; 36 37 + outputs = [ "out" "dev" ]; 38 + 39 nativeBuildInputs = [ cmake ]; 40 nativeCheckInputs = [ openssh mpiCheckPhaseHook ]; 41 buildInputs = [ blas lapack ];
+4 -2
pkgs/development/ocaml-modules/eliom/default.nix
··· 8 , opaline 9 , ocamlbuild 10 , ppx_deriving 11 , findlib 12 , js_of_ocaml-ocamlbuild 13 , js_of_ocaml-ppx ··· 21 22 stdenv.mkDerivation rec { 23 pname = "eliom"; 24 - version = "9.4.0"; 25 26 src = fetchFromGitHub { 27 owner = "ocsigen"; 28 repo = "eliom"; 29 rev = version; 30 - sha256 = "sha256:1yn8mqxv9yz51x81j8wv1jn7l7crm8azp1m2g4zn5nz2s4nmfv6q"; 31 }; 32 33 nativeBuildInputs = [ ··· 41 js_of_ocaml-ocamlbuild 42 js_of_ocaml-ppx_deriving_json 43 ocamlnet 44 ]; 45 46 propagatedBuildInputs = [
··· 8 , opaline 9 , ocamlbuild 10 , ppx_deriving 11 + , ppx_optcomp 12 , findlib 13 , js_of_ocaml-ocamlbuild 14 , js_of_ocaml-ppx ··· 22 23 stdenv.mkDerivation rec { 24 pname = "eliom"; 25 + version = "10.1.0"; 26 27 src = fetchFromGitHub { 28 owner = "ocsigen"; 29 repo = "eliom"; 30 rev = version; 31 + hash = "sha256-nzrLl8adaRW6c+IQfJ7s+7KtFT8uU27Umyrv0aWXuxw="; 32 }; 33 34 nativeBuildInputs = [ ··· 42 js_of_ocaml-ocamlbuild 43 js_of_ocaml-ppx_deriving_json 44 ocamlnet 45 + ppx_optcomp 46 ]; 47 48 propagatedBuildInputs = [
+4 -5
pkgs/development/ocaml-modules/mdx/default.nix
··· 1 { lib, fetchurl, buildDunePackage, ocaml, findlib 2 , alcotest 3 - , astring, cppo, fmt, logs, ocaml-version, odoc-parser, lwt, re, csexp 4 , gitUpdater 5 }: 6 7 buildDunePackage rec { 8 pname = "mdx"; 9 - version = "2.3.0"; 10 11 minimalOCamlVersion = "4.08"; 12 - duneVersion = "3"; 13 14 src = fetchurl { 15 url = "https://github.com/realworldocaml/mdx/releases/download/${version}/mdx-${version}.tbz"; 16 - hash = "sha256-MqCDmBAK/S0ueYi8O0XJtplxJx96twiFHe04Q8lHBmE="; 17 }; 18 19 nativeBuildInputs = [ cppo ]; 20 - propagatedBuildInputs = [ astring fmt logs csexp ocaml-version odoc-parser re findlib ]; 21 checkInputs = [ alcotest lwt ]; 22 23 doCheck = true;
··· 1 { lib, fetchurl, buildDunePackage, ocaml, findlib 2 , alcotest 3 + , astring, cppo, fmt, logs, ocaml-version, camlp-streams, lwt, re, csexp 4 , gitUpdater 5 }: 6 7 buildDunePackage rec { 8 pname = "mdx"; 9 + version = "2.3.1"; 10 11 minimalOCamlVersion = "4.08"; 12 13 src = fetchurl { 14 url = "https://github.com/realworldocaml/mdx/releases/download/${version}/mdx-${version}.tbz"; 15 + hash = "sha256-mkCkX6p41H4pOSvU/sJg0UAWysGweOSrAW6jrcCXQ/M="; 16 }; 17 18 nativeBuildInputs = [ cppo ]; 19 + propagatedBuildInputs = [ astring fmt logs csexp ocaml-version camlp-streams re findlib ]; 20 checkInputs = [ alcotest lwt ]; 21 22 doCheck = true;
-31
pkgs/development/ocaml-modules/ocsigen-server/cohttp-5.patch
··· 1 - diff --git a/src/server/ocsigen_cohttp.ml b/src/server/ocsigen_cohttp.ml 2 - index 4363cff7..b0cc0c53 100644 3 - --- a/src/server/ocsigen_cohttp.ml 4 - +++ b/src/server/ocsigen_cohttp.ml 5 - @@ -14,25 +14,13 @@ exception Ext_http_error of 6 - 7 - let _print_request fmt request = 8 - 9 - - let print_list print_data out_ch lst = 10 - - let rec aux = function 11 - - | [] -> () 12 - - | [ x ] -> print_data out_ch x 13 - - | x :: r -> print_data out_ch x; aux r 14 - - in aux lst 15 - - in 16 - - 17 - Format.fprintf fmt "%s [%s/%s]:\n" 18 - (Uri.to_string (Cohttp.Request.uri request)) 19 - Cohttp.(Code.string_of_version (Request.version request)) 20 - Cohttp.(Code.string_of_method (Request.meth request)); 21 - 22 - Cohttp.Header.iter 23 - - (fun key values -> 24 - - (print_list 25 - - (fun fmt value -> Format.fprintf fmt "\t%s = %s\n" key value) 26 - - fmt 27 - - values)) 28 - + (Format.fprintf fmt "\t%s = %s\n") 29 - (Cohttp.Request.headers request) 30 - 31 - let connections = Hashtbl.create 256
···
+6 -9
pkgs/development/ocaml-modules/ocsigen-server/default.nix
··· 1 { lib, buildDunePackage, fetchFromGitHub, which, ocaml, lwt_react, ssl, lwt_ssl, findlib 2 , bigstringaf, lwt, cstruct, mirage-crypto, zarith, mirage-crypto-ec, ptime, mirage-crypto-rng, mtime, ca-certs 3 , cohttp, cohttp-lwt-unix, hmap 4 - , lwt_log, ocaml_pcre, cryptokit, xml-light, ipaddr 5 , camlzip 6 , makeWrapper 7 }: ··· 12 13 let caml_ld_library_path = 14 lib.concatMapStringsSep ":" mkpath [ 15 - bigstringaf lwt ssl cstruct mirage-crypto zarith mirage-crypto-ec ptime mirage-crypto-rng mtime ca-certs cryptokit ocaml_pcre 16 ] 17 ; in 18 19 buildDunePackage rec { 20 - version = "5.0.1"; 21 pname = "ocsigenserver"; 22 23 - duneVersion = "3"; 24 minimalOCamlVersion = "4.08"; 25 26 src = fetchFromGitHub { 27 owner = "ocsigen"; 28 repo = "ocsigenserver"; 29 - rev = version; 30 - sha256 = "sha256:1vzza33hd41740dqrx4854rqpyd8wv7kwpsvvmlpck841i9lh8h5"; 31 }; 32 33 nativeBuildInputs = [ makeWrapper which ]; 34 buildInputs = [ lwt_react camlzip findlib ]; 35 36 propagatedBuildInputs = [ cohttp cohttp-lwt-unix cryptokit hmap ipaddr lwt_log lwt_ssl 37 - ocaml_pcre xml-light 38 ]; 39 - 40 - patches = [ ./cohttp-5.patch ]; 41 42 configureFlags = [ "--root $(out)" "--prefix /" "--temproot ''" ]; 43
··· 1 { lib, buildDunePackage, fetchFromGitHub, which, ocaml, lwt_react, ssl, lwt_ssl, findlib 2 , bigstringaf, lwt, cstruct, mirage-crypto, zarith, mirage-crypto-ec, ptime, mirage-crypto-rng, mtime, ca-certs 3 , cohttp, cohttp-lwt-unix, hmap 4 + , lwt_log, re, cryptokit, xml-light, ipaddr 5 , camlzip 6 , makeWrapper 7 }: ··· 12 13 let caml_ld_library_path = 14 lib.concatMapStringsSep ":" mkpath [ 15 + bigstringaf lwt ssl cstruct mirage-crypto zarith mirage-crypto-ec ptime mirage-crypto-rng mtime ca-certs cryptokit re 16 ] 17 ; in 18 19 buildDunePackage rec { 20 + version = "5.1.0"; 21 pname = "ocsigenserver"; 22 23 minimalOCamlVersion = "4.08"; 24 25 src = fetchFromGitHub { 26 owner = "ocsigen"; 27 repo = "ocsigenserver"; 28 + rev = "refs/tags/${version}"; 29 + hash = "sha256-6xO+4eYSp6rlgPT09L7cvlaz6kYYuUPRa3K/TgZmaqE="; 30 }; 31 32 nativeBuildInputs = [ makeWrapper which ]; 33 buildInputs = [ lwt_react camlzip findlib ]; 34 35 propagatedBuildInputs = [ cohttp cohttp-lwt-unix cryptokit hmap ipaddr lwt_log lwt_ssl 36 + re xml-light 37 ]; 38 39 configureFlags = [ "--root $(out)" "--prefix /" "--temproot ''" ]; 40
+2 -2
pkgs/development/ocaml-modules/ocsigen-start/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "ocaml${ocaml.version}-ocsigen-start"; 10 - version = "6.0.1"; 11 12 nativeBuildInputs = [ ocaml findlib eliom ]; 13 buildInputs = [ ocsigen-ppx-rpc ]; ··· 21 owner = "ocsigen"; 22 repo = "ocsigen-start"; 23 rev = version; 24 - sha256 = "sha256:097bjaxvb1canilmqr8ay3ihig2msq7z8mi0g0rnbciikj1jsrym"; 25 }; 26 27 preInstall = ''
··· 7 8 stdenv.mkDerivation rec { 9 pname = "ocaml${ocaml.version}-ocsigen-start"; 10 + version = "6.1.0"; 11 12 nativeBuildInputs = [ ocaml findlib eliom ]; 13 buildInputs = [ ocsigen-ppx-rpc ]; ··· 21 owner = "ocsigen"; 22 repo = "ocsigen-start"; 23 rev = version; 24 + hash = "sha256-gHFPutoPYKTDsFninwBTc2WOIFd3+ghRYW2hi1y5MUs="; 25 }; 26 27 preInstall = ''
+24
pkgs/development/ocaml-modules/zelus-gtk/default.nix
···
··· 1 + { buildDunePackage 2 + , zelus 3 + , lablgtk 4 + }: 5 + 6 + buildDunePackage { 7 + pname = "zelus-gtk"; 8 + inherit (zelus) version src postPatch; 9 + 10 + minimalOCamlVersion = "4.08.1"; 11 + 12 + nativeBuildInputs = [ 13 + zelus 14 + ]; 15 + 16 + buildInputs = [ 17 + lablgtk 18 + ]; 19 + 20 + meta = { 21 + description = "Zelus GTK library"; 22 + inherit (zelus.meta) homepage license maintainers; 23 + }; 24 + }
+42
pkgs/development/ocaml-modules/zelus/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , buildDunePackage 4 + , fetchFromGitHub 5 + , menhir 6 + , menhirLib 7 + }: 8 + 9 + buildDunePackage rec { 10 + pname = "zelus"; 11 + version = "2.2"; 12 + 13 + minimalOCamlVersion = "4.08.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "INRIA"; 17 + repo = "zelus"; 18 + rev = version; 19 + hash = "sha256-NcGX343LProADtzJwlq1kmihLaya1giY6xv9ScvdgTA="; 20 + }; 21 + 22 + # ./configure: cannot execute: required file not found 23 + postPatch = lib.optionalString stdenv.isLinux '' 24 + patchShebangs configure 25 + ''; 26 + 27 + nativeBuildInputs = [ 28 + menhir 29 + ]; 30 + 31 + buildInputs = [ 32 + menhirLib 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "A synchronous language with ODEs"; 37 + homepage = "https://zelus.di.ens.fr"; 38 + license = licenses.inria-zelus; 39 + mainProgram = "zeluc"; 40 + maintainers = with maintainers; [ wegank ]; 41 + }; 42 + }
+27 -4
pkgs/development/python-modules/qtile-extras/default.nix
··· 4 , setuptools-scm 5 , pytestCheckHook 6 , xorgserver 7 , pulseaudio 8 , pytest-asyncio 9 , qtile 10 , keyring 11 , requests ··· 14 15 buildPythonPackage rec { 16 pname = "qtile-extras"; 17 - version = "0.22.1"; 18 - format = "setuptools"; 19 20 src = fetchFromGitHub { 21 owner = "elParaguayo"; 22 repo = pname; 23 rev = "v${version}"; 24 - hash = "sha256-2dMpGLtwIp7+aoOgYav2SAjaKMiXHmmvsWTBEIMKEW4="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 31 nativeCheckInputs = [ 32 pytestCheckHook 33 xorgserver 34 ]; 35 checkInputs = [ 36 pytest-asyncio 37 qtile 38 pulseaudio 39 keyring ··· 52 "test_tvh_widget_recording" 53 "test_tvh_widget_popup" 54 "test_snapcast_options" 55 # ValueError: Namespace Gdk not available 56 # AssertionError: Window never appeared... 57 - "test_gloabl_menu" 58 "test_statusnotifier_menu" 59 # AttributeError: 'str' object has no attribute 'canonical' 60 "test_strava_widget_display" ··· 67 "test_upower_critical_battery" 68 "test_upower_charging" 69 "test_upower_show_text" 70 ]; 71 preCheck = '' 72 export HOME=$(mktemp -d)
··· 4 , setuptools-scm 5 , pytestCheckHook 6 , xorgserver 7 + , imagemagick 8 , pulseaudio 9 , pytest-asyncio 10 + , pytest-lazy-fixture 11 , qtile 12 , keyring 13 , requests ··· 16 17 buildPythonPackage rec { 18 pname = "qtile-extras"; 19 + version = "0.23.0"; 20 + format = "pyproject"; 21 22 src = fetchFromGitHub { 23 owner = "elParaguayo"; 24 repo = pname; 25 rev = "v${version}"; 26 + hash = "sha256-WI1z8vrbZiJw6fDHK27mKA+1FyZEQTMttIDNzSIX+PU="; 27 }; 28 29 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 33 nativeCheckInputs = [ 34 pytestCheckHook 35 xorgserver 36 + imagemagick 37 ]; 38 checkInputs = [ 39 pytest-asyncio 40 + pytest-lazy-fixture 41 qtile 42 pulseaudio 43 keyring ··· 56 "test_tvh_widget_recording" 57 "test_tvh_widget_popup" 58 "test_snapcast_options" 59 + "test_snapcast_icon" 60 + "test_snapcast_icon_colour" 61 + "test_snapcast_http_error" 62 + "test_syncthing_not_syncing" 63 + "test_syncthing_is_syncing" 64 + "test_syncthing_http_error" 65 + "test_githubnotifications_colours" 66 + "test_githubnotifications_logging" 67 + "test_githubnotifications_icon" 68 + "test_githubnotifications_reload_token" 69 + "test_image_size_horizontal" 70 + "test_image_size_vertical" 71 + "test_image_size_mask" 72 # ValueError: Namespace Gdk not available 73 # AssertionError: Window never appeared... 74 "test_statusnotifier_menu" 75 # AttributeError: 'str' object has no attribute 'canonical' 76 "test_strava_widget_display" ··· 83 "test_upower_critical_battery" 84 "test_upower_charging" 85 "test_upower_show_text" 86 + "test_global_menu" 87 + "test_mpris2_popup" 88 + # No network connection 89 + "test_wifiicon_internet_check" 90 + # AssertionErrors 91 + "test_widget_init_config" 92 + "test_decoration_output" 93 ]; 94 preCheck = '' 95 export HOME=$(mktemp -d)
+3 -3
pkgs/development/tools/kdash/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "kdash"; 15 - version = "0.4.2"; 16 17 src = fetchFromGitHub { 18 owner = "kdash-rs"; 19 repo = pname; 20 rev = "v${version}"; 21 - sha256 = "sha256-PjkRE4JWDxiDKpENN/yDnO45CegxLPov/EhxnUbmpOg="; 22 }; 23 24 nativeBuildInputs = [ perl python3 pkg-config ]; ··· 26 buildInputs = [ openssl xorg.xcbutil ] 27 ++ lib.optional stdenv.isDarwin AppKit; 28 29 - cargoHash = "sha256-nCFXhAaVrIkm6XOSa1cDCxukbf/CVmwPEu6gk7VybVQ="; 30 31 meta = with lib; { 32 description = "A simple and fast dashboard for Kubernetes";
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "kdash"; 15 + version = "0.4.3"; 16 17 src = fetchFromGitHub { 18 owner = "kdash-rs"; 19 repo = pname; 20 rev = "v${version}"; 21 + sha256 = "sha256-1vBa6BAn9+T1C3ZxseMvLQHIlU0WUYShUQE3YKleoc4="; 22 }; 23 24 nativeBuildInputs = [ perl python3 pkg-config ]; ··· 26 buildInputs = [ openssl xorg.xcbutil ] 27 ++ lib.optional stdenv.isDarwin AppKit; 28 29 + cargoHash = "sha256-dtuUkS5Je8u4DcjNgQFVVX+ACP0RBLXUYNB+EwKajzo="; 30 31 meta = with lib; { 32 description = "A simple and fast dashboard for Kubernetes";
+3 -8
pkgs/development/tools/misc/funzzy/default.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "funzzy"; 10 - version = "1.0.1"; 11 12 src = fetchFromGitHub { 13 owner = "cristianoliveira"; 14 repo = "funzzy"; 15 rev = "v${version}"; 16 - hash = "sha256-Qqj/omtjUVtsjMh2LMmwlJ4d8fIwMT7mdD4odzI49u8="; 17 }; 18 19 - cargoHash = "sha256-pv05r5irKULRvik8kWyuT7/sr7GUDj0oExyyoGrMD6k="; 20 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 darwin.apple_sdk.frameworks.CoreServices 23 ]; 24 - 25 - # Cargo.lock is outdated 26 - preConfigure = '' 27 - cargo metadata --offline 28 - ''; 29 30 meta = with lib; { 31 description = "A lightweight watcher";
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "funzzy"; 10 + version = "1.1.1"; 11 12 src = fetchFromGitHub { 13 owner = "cristianoliveira"; 14 repo = "funzzy"; 15 rev = "v${version}"; 16 + hash = "sha256-sgfMxSbOBn2Ps6hqrFDm3x9QOnMvtMgO7gAt6kk0cIs="; 17 }; 18 19 + cargoHash = "sha256-If8iBvwiaH1jK8z06ORY/lx+7HAT4InxbjoLe289kws="; 20 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 darwin.apple_sdk.frameworks.CoreServices 23 ]; 24 25 meta = with lib; { 26 description = "A lightweight watcher";
+4 -4
pkgs/development/tools/revive/default.nix
··· 2 3 buildGoModule rec { 4 pname = "revive"; 5 - version = "1.3.3"; 6 7 src = fetchFromGitHub { 8 owner = "mgechev"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-+ac/Sq+4Ox/R3N7cMM+QADWf9jZJwYJEOvHDdkB5X9Q="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; ··· 18 rm -rf $out/.git 19 ''; 20 }; 21 - vendorHash = "sha256-00w07PgPf+4eclxx6/fY9SbmOEU8FPxIOmg/i9NBboM="; 22 23 ldflags = [ 24 "-s" ··· 35 36 # The following tests fail when built by nix: 37 # 38 - # $ nix log /nix/store/build-revive.1.3.3.drv | grep FAIL 39 # 40 # --- FAIL: TestAll (0.01s) 41 # --- FAIL: TestTimeEqual (0.00s)
··· 2 3 buildGoModule rec { 4 pname = "revive"; 5 + version = "1.3.4"; 6 7 src = fetchFromGitHub { 8 owner = "mgechev"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-TNmxS9LoOOWHGAFrBdCKmVEWCEoIpic84L66dIFQWJg="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; ··· 18 rm -rf $out/.git 19 ''; 20 }; 21 + vendorHash = "sha256-iCd4J37wJbTkKiWRD6I7qNr5grNhWZLx5ymcOOJlNKg="; 22 23 ldflags = [ 24 "-s" ··· 35 36 # The following tests fail when built by nix: 37 # 38 + # $ nix log /nix/store/build-revive.1.3.4.drv | grep FAIL 39 # 40 # --- FAIL: TestAll (0.01s) 41 # --- FAIL: TestTimeEqual (0.00s)
+2 -2
pkgs/games/ldmud/default.nix
··· 28 29 stdenv.mkDerivation rec { 30 pname = "ldmud"; 31 - version = "3.6.6"; 32 33 src = fetchFromGitHub { 34 owner = pname; 35 repo = pname; 36 rev = version; 37 - sha256 = "sha256-2TaFt+T9B5Df6KWRQcbhY1E1D6NISb0oqLgyX47f5lI="; 38 }; 39 40 sourceRoot = "${src.name}/src";
··· 28 29 stdenv.mkDerivation rec { 30 pname = "ldmud"; 31 + version = "3.6.7"; 32 33 src = fetchFromGitHub { 34 owner = pname; 35 repo = pname; 36 rev = version; 37 + sha256 = "sha256-PkrjP7tSZMaj61Hsn++7+CumhqFPLbf0+eAI6afP9HA="; 38 }; 39 40 sourceRoot = "${src.name}/src";
+3 -3
pkgs/os-specific/linux/conntrack-tools/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "conntrack-tools"; 9 - version = "1.4.7"; 10 11 src = fetchurl { 12 - url = "https://www.netfilter.org/projects/conntrack-tools/files/${pname}-${version}.tar.bz2"; 13 - sha256 = "sha256-CZ3rz1foFpDO1X9Ra0k1iKc1GPSMFNZW+COym0/CS10="; 14 }; 15 16 buildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "conntrack-tools"; 9 + version = "1.4.8"; 10 11 src = fetchurl { 12 + url = "https://www.netfilter.org/projects/conntrack-tools/files/${pname}-${version}.tar.xz"; 13 + hash = "sha256-BnZ39MX2VkgZ547TqdSomAk16pJz86uyKkIOowq13tY="; 14 }; 15 16 buildInputs = [
+4 -4
pkgs/servers/monitoring/prometheus/default.nix
··· 31 }: 32 33 let 34 - version = "2.46.0"; 35 webUiStatic = fetchurl { 36 url = "https://github.com/prometheus/prometheus/releases/download/v${version}/prometheus-web-ui-${version}.tar.gz"; 37 - hash = "sha256-H6RRyemawt9NRLTVG0iH4vNFNiuvdPZz7u43Zop0vVI="; 38 }; 39 in 40 buildGoModule rec { ··· 47 owner = "prometheus"; 48 repo = "prometheus"; 49 rev = "v${version}"; 50 - hash = "sha256-TB4N5aAfNw34HJ1HSt6rHTETTyAgpGA8B5VOFHisZFU="; 51 }; 52 53 - vendorHash = "sha256-jeGtna7IeKAOiu4FFA2xRv+fwpzCpnqwI5nj641dlM4="; 54 55 excludedPackages = [ "documentation/prometheus-mixin" ]; 56
··· 31 }: 32 33 let 34 + version = "2.47.0"; 35 webUiStatic = fetchurl { 36 url = "https://github.com/prometheus/prometheus/releases/download/v${version}/prometheus-web-ui-${version}.tar.gz"; 37 + hash = "sha256-MjnTFDHMLDML8crhtCfAv3aK67vwLEUVglIzXgc5mBU="; 38 }; 39 in 40 buildGoModule rec { ··· 47 owner = "prometheus"; 48 repo = "prometheus"; 49 rev = "v${version}"; 50 + hash = "sha256-I0tl7DlZ1Yp5nHm3JK1hP+u+yLGBjwubfaTxUvXSDUE="; 51 }; 52 53 + vendorHash = "sha256-qFp+tMHhXmJGY9MSukVRjBVzaIBgfxB0BorWiuInMwk="; 54 55 excludedPackages = [ "documentation/prometheus-mixin" ]; 56
+3 -3
pkgs/tools/security/arti/default.nix
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "arti"; 13 - version = "1.1.8"; 14 15 src = fetchFromGitLab { 16 domain = "gitlab.torproject.org"; ··· 18 owner = "core"; 19 repo = "arti"; 20 rev = "arti-v${version}"; 21 - sha256 = "sha256-+Y41jhMEzcNyA9U0zsvVyR9f1dEV94hFNR8SxiJ6hCk="; 22 }; 23 24 - cargoHash = "sha256-MF2WPUs0MvhN3MSmey7ziPPwZz8zkn2D3G2WDgXn+hs="; 25 26 nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 27
··· 10 11 rustPlatform.buildRustPackage rec { 12 pname = "arti"; 13 + version = "1.1.9"; 14 15 src = fetchFromGitLab { 16 domain = "gitlab.torproject.org"; ··· 18 owner = "core"; 19 repo = "arti"; 20 rev = "arti-v${version}"; 21 + sha256 = "sha256-nce+WpT9uloO9Ce/h1ziPWJhYMcL4yZvYO1EP8AEfxI="; 22 }; 23 24 + cargoHash = "sha256-Qqm39QK+/rCmad3dJLVPGd7ZKP8ldtFI+NnxC6iQUBA="; 25 26 nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 27
+3 -3
pkgs/tools/security/trufflehog/default.nix
··· 7 8 buildGoModule rec { 9 pname = "trufflehog"; 10 - version = "3.58.0"; 11 12 src = fetchFromGitHub { 13 owner = "trufflesecurity"; 14 repo = "trufflehog"; 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-S6KoGPVtB7iBSG2HWH5AQngGyv/1h9wdx7VDW/xnSKk="; 17 }; 18 19 - vendorHash = "sha256-PbKkRVBDpHG9HYUSBY+VhnqvU3k9ephU3PJgJ8xOIrw="; 20 21 ldflags = [ 22 "-s"
··· 7 8 buildGoModule rec { 9 pname = "trufflehog"; 10 + version = "3.59.0"; 11 12 src = fetchFromGitHub { 13 owner = "trufflesecurity"; 14 repo = "trufflehog"; 15 rev = "refs/tags/v${version}"; 16 + hash = "sha256-J+hmWEBjTFb7mE9uj0g4uq+VZjKS/3sIOtJyNweYkRw="; 17 }; 18 19 + vendorHash = "sha256-xsdtqRU3Exeo/EHkA8xars9+FUnrVZRdET0PGtv4ikI="; 20 21 ldflags = [ 22 "-s"
+3 -3
pkgs/tools/text/comrak/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "comrak"; 5 - version = "0.18.0"; 6 7 src = fetchFromGitHub { 8 owner = "kivikakk"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-igJphBA49878xuSlAxbI3l6252aTkXaN7XbxVaSBVOw="; 12 }; 13 14 - cargoSha256 = "sha256-ucXb0SU7dpjeLzDN2OTxji3Mh+7bw+npSNsQjbOeY+s="; 15 16 meta = with lib; { 17 description = "A CommonMark-compatible GitHub Flavored Markdown parser and formatter";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "comrak"; 5 + version = "0.19.0"; 6 7 src = fetchFromGitHub { 8 owner = "kivikakk"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-eyLgAVo4U0a1JByJsoWOnKGhDcaOhul145KeOOkmHq8="; 12 }; 13 14 + cargoSha256 = "sha256-Q9VmiC07UxstwRPertTteeHX34zTo58a2wPkQtSwUPU="; 15 16 meta = with lib; { 17 description = "A CommonMark-compatible GitHub Flavored Markdown parser and formatter";
+2 -2
pkgs/tools/text/ugrep/default.nix
··· 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "ugrep"; 15 - version = "4.1.0"; 16 17 src = fetchFromGitHub { 18 owner = "Genivia"; 19 repo = "ugrep"; 20 rev = "v${finalAttrs.version}"; 21 - hash = "sha256-FZGZ60+SGCFOfdUOlUXMZee4Il0UmT8zRmsAVX6bGYY="; 22 }; 23 24 buildInputs = [
··· 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "ugrep"; 15 + version = "4.2.0"; 16 17 src = fetchFromGitHub { 18 owner = "Genivia"; 19 repo = "ugrep"; 20 rev = "v${finalAttrs.version}"; 21 + hash = "sha256-wK952anodjsYvJQhM3V6SXZnt1+jbRTfgN+GfuuhPr8="; 22 }; 23 24 buildInputs = [
-1163
pkgs/top-level/aliases.nix
··· 53 forceSystem = system: _: 54 (import self.path { localSystem = { inherit system; }; }); 55 56 - _0x0 = throw "0x0 upstream is abandoned and no longer exists: https://gitlab.com/somasis/scripts/"; 57 - 58 ### A ### 59 60 - accounts-qt = throw "'accounts-qt' has been renamed to/replaced by 'libsForQt5.accounts-qt'"; # Converted to throw 2022-02-22 61 - acoustidFingerprinter = throw "acoustidFingerprinter has been removed from nixpkgs, as it was unmaintained"; # Added 2022-05-09 62 - adobeReader = throw "'adobeReader' has been renamed to/replaced by 'adobe-reader'"; # Converted to throw 2022-02-22 63 - adobe_flex_sdk = throw "'adobe_flex_sdk' has been renamed to/replaced by 'apache-flex-sdk'"; # Converted to throw 2022-02-22 64 - adoptopenjdk-hotspot-bin-17 = throw "AdoptOpenJDK is now Temurin. Use temurin-bin-17"; # added 2022-07-02 65 - adoptopenjdk-jre-hotspot-bin-17 = throw "AdoptOpenJDK is now Temurin and JRE is no longer provided. Use temurin-bin-17"; # added 2022-07-02 66 - aesop = throw "aesop has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 67 - ag = throw "'ag' has been renamed to/replaced by 'silver-searcher'"; # Converted to throw 2022-02-22 68 - aircrackng = throw "'aircrackng' has been renamed to/replaced by 'aircrack-ng'"; # Converted to throw 2022-02-22 69 airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 70 - airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19 71 alertmanager-bot = throw "alertmanager-bot is broken and has been archived by upstream" ; # Added 2023-07-28 72 - aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30 73 - aliza = throw "aliza has been removed, because it depended on qt4 and was unmaintained in nixpkgs"; # Added 2022-05-12 74 alsaLib = alsa-lib; # Added 2021-06-09 75 alsaOss = alsa-oss; # Added 2021-06-10 76 alsaPluginWrapper = alsa-plugins-wrapper; # Added 2021-06-10 77 alsaPlugins = alsa-plugins; # Added 2021-06-10 78 alsaTools = alsa-tools; # Added 2021-06-10 79 alsaUtils = alsa-utils; # Added 2021-06-10 80 - amazon-glacier-cmd-interface = throw "amazon-glacier-cmd-interface has been removed due to it being unmaintained"; # Added 2020-10-30 81 - aminal = throw "aminal was renamed to darktile"; # Added 2021-09-28 82 - ammonite-repl = throw "'ammonite-repl' has been renamed to/replaced by 'ammonite'"; # Converted to throw 2022-02-22 83 - amuleDaemon = throw "amuleDaemon was renamed to amule-daemon"; # Added 2022-02-11 84 - amsn = throw "amsn has been removed due to being unmaintained"; # Added 2020-12-09 85 - amuleGui = throw "amuleGui was renamed to amule-gui"; # Added 2022-02-11 86 angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06 87 - ansible_2_10 = throw "Ansible 2.10 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 88 - ansible_2_11 = throw "Ansible 2.11 goes end of life in 2022/11 and can't be supported throughout the 22.05 release cycle"; # Added 2022-03-30 89 ansible_2_12 = throw "Ansible 2.12 goes end of life in 2023/05 and can't be supported throughout the 23.05 release cycle"; # Added 2023-05-16 90 - ansible_2_9 = throw "Ansible 2.9 went end of life in 2022/05 and has subsequently been dropped"; # Added 2022-03-30 91 - animbar = throw "animbar has been removed, because it was unmaintained"; # Added 2022-05-26 92 - antimicro = throw "antimicro has been removed as it was broken, see antimicrox instead"; # Added 2020-08-06 93 antimicroX = antimicrox; # Added 2021-10-31 94 - apple-music-electron = throw "'apple-music-electron' is end of life and has been removed, you can use 'cider' instead"; # Added 2022-10-02 95 - appleseed = throw "appleseed has been removed, because it was unmaintained"; # Added 2022-05-26 96 - arangodb_3_3 = throw "arangodb_3_3 went end of life and has been removed"; # Added 2022-10-08 97 - arangodb_3_4 = throw "arangodb_3_4 went end of life and has been removed"; # Added 2022-10-08 98 - arangodb_3_5 = throw "arangodb_3_5 went end of life and has been removed"; # Added 2022-10-08 99 - ardour_5 = throw "ardour_5 has been removed. see https://github.com/NixOS/nixpkgs/issues/139549"; # Added 2021-09-28 100 - arduino_core = throw "'arduino_core' has been renamed to/replaced by 'arduino-core'"; # Converted to throw 2022-02-22 101 - arora = throw "arora has been removed"; # Added 2020-09-09 102 - asciidocFull = throw "'asciidocFull' has been renamed to/replaced by 'asciidoc-full'"; # Converted to throw 2022-02-22 103 aseprite-unfree = aseprite; # Added 2023-08-26 104 asls = throw "asls has been removed: abandoned by upstream"; # Added 2023-03-16 105 - asterisk_13 = throw "asterisk_13: Asterisk 13 is end of life and has been removed"; # Added 2022-04-06 106 - asterisk_15 = throw "asterisk_15: Asterisk 15 is end of life and has been removed"; # Added 2020-10-07 107 asterisk_16 = throw "asterisk_16: Asterisk 16 is end of life and has been removed"; # Added 2023-04-19 108 - asterisk_17 = throw "asterisk_17: Asterisk 17 is end of life and has been removed"; # Added 2022-04-06 109 asterisk_19 = throw "asterisk_19: Asterisk 19 is end of life and has been removed"; # Added 2023-04-19 110 - at_spi2_atk = throw "'at_spi2_atk' has been renamed to/replaced by 'at-spi2-atk'"; # Converted to throw 2022-02-22 111 - at_spi2_core = throw "'at_spi2_core' has been renamed to/replaced by 'at-spi2-core'"; # Converted to throw 2022-02-22 112 atom = throw "'atom' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 113 atom-beta = throw "'atom-beta' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 114 atomEnv = throw "'atomEnv' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 115 atomPackages = throw "'atomPackages' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 116 - aucdtect = throw "aucdtect: Upstream no longer provides download urls"; # Added 2020-12-26 117 - audacity-gtk2 = throw "'audacity-gtk2' has been removed to/replaced by 'audacity'"; # Added 2022-10-09 118 - audacity-gtk3 = throw "'audacity-gtk3' has been removed to/replaced by 'audacity'"; # Added 2022-10-09 119 - automoc4 = throw "automoc4 has been removed from nixpkgs"; # Added 2022-05-30 120 avldrums-lv2 = x42-avldrums; # Added 2020-03-29 121 - avogadro = throw "avogadro has been removed, because it depended on qt4"; # Added 2022-06-12 122 - avxsynth = throw "avxsynth was removed because it was broken"; # Added 2021-05-18 123 awesome-4-0 = awesome; # Added 2022-05-05 124 - aws = throw "aws has been removed: abandoned by upstream. For the AWS CLI maintained by Amazon, see 'awscli' or 'awscli2'"; # Added 2022-09-21 125 - awless = throw "awless has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-05-30 126 - aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; 127 - axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 128 - azure-vhd-utils = throw "azure-vhd-utils has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 129 - azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 130 131 ### B ### 132 133 badtouch = authoscope; # Project was renamed, added 20210626 134 baget = throw "'baget' has been removed due to being unmaintained"; 135 - bar-xft = throw "'bar-xft' has been renamed to/replaced by 'lemonbar-xft'"; # Converted to throw 2022-02-22 136 - bashCompletion = throw "'bashCompletion' has been renamed to/replaced by 'bash-completion'"; # Converted to throw 2022-02-22 137 bashInteractive_5 = bashInteractive; # Added 2021-08-20 138 bash_5 = bash; # Added 2021-08-20 139 - bashburn = throw "bashburn has been removed: deleted by upstream"; # Added 2022-01-07 140 - bazaar = throw "bazaar has been deprecated by breezy"; # Added 2020-04-19 141 - bazaarTools = throw "bazaar has been deprecated by breezy"; # Added 2020-04-19 142 - bazel_0 = throw "bazel 0 is past end of life as it is not an lts version"; # Added 2022-05-09 143 - bazel_0_27 = throw "bazel 0.27 is past end of life as it is not an lts version"; # Added 2022-05-09 144 - bazel_0_29 = throw "bazel 0.29 is past end of life as it is not an lts version"; # Added 2022-05-09 145 - bazel_1 = throw "bazel 1 is past end of life as it is not an lts version"; # Added 2022-05-09 146 bazel_3 = throw "bazel 3 is past end of life as it is not an lts version"; # Added 2023-02-02 147 - bcat = throw "bcat has been removed because upstream is dead"; # Added 2021-08-22 148 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 149 - beetsExternalPlugins = throw "beetsExternalPlugins has been deprecated, use beetsPackages.$pluginname"; # Added 2022-05-07 150 - beret = throw "beret has been removed"; # Added 2021-11-16 151 - bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # Added 2022-01-07 152 bird2 = bird; # Added 2022-02-21 153 - bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21 154 - bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21 155 - bitcoin-classic = throw "bitcoin-classic has been removed: the Bitcoin Classic project has closed down, https://bitcoinclassic.com/news/closing.html"; # Added 2022-11-24 156 - bitcoind-classic = throw "bitcoind-classic has been removed: the Bitcoin Classic project has closed down, https://bitcoinclassic.com/news/closing.html"; # Added 2022-11-24 157 - bitcoin-gold = throw "bitcoin-gold has been removed since it's unnmaintained and will stop building with Qt > 5.14"; # Added 2022-11-24 158 - bitcoind-gold = throw "bitcoin-gold has been removed since it's unnmaintained: https://github.com/BTCGPU/BTCGPU/graphs/code-frequency"; # Added 2022-11-24 159 ddclient = throw "ddclient has been removed on the request of the upstream maintainer because it is unmaintained and has bugs. Please switch to a different software like `inadyn` or `knsupdate`."; # Added 2023-07-04 160 - digibyte = throw "digibyte has been removed since it's unnmaintained and will stop building with Qt > 5.14"; # Added 2022-11-24 161 - digibyted = throw "digibyted has been removed since it's unnmaintained: https://github.com/digibyte/digibyte/graphs/code-frequency"; # Added 2022-11-24 162 - bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22 163 - blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01 164 bluezFull = throw "'bluezFull' has been renamed to/replaced by 'bluez'"; # Converted to throw 2023-09-10 165 - bomi = throw "bomi has been removed from nixpkgs since it was broken and abandoned upstream"; # Added 2020-12-10 166 - boost159 = throw "boost159 has been deprecated in favor of the latest version"; # Added 2023-01-01 167 - boost15x = throw "boost15x has been deprecated in favor of the latest version"; # Added 2023-01-01 168 - boost160 = throw "boost160 has been deprecated in favor of the latest version"; # Added 2023-01-01 169 boost168 = throw "boost168 has been deprecated in favor of the latest version"; # Added 2023-06-08 170 boost169 = throw "boost169 has been deprecated in favor of the latest version"; # Added 2023-06-08 171 boost16x = throw "boost16x has been deprecated in favor of the latest version"; # Added 2023-06-08 ··· 175 boost174 = throw "boost174 has been deprecated in favor of the latest version"; # Added 2023-06-08 176 boost17x = throw "boost17x has been deprecated in favor of the latest version"; # Added 2023-07-13 177 boost18x = throw "boost18x has been deprecated in favor of the latest version"; # Added 2023-07-13 178 - botan = throw "botan has been removed because it did not support a supported openssl version"; # added 2021-12-15 179 bpftool = bpftools; # Added 2021-05-03 180 bpytop = throw "bpytop has been deprecated by btop"; # Added 2023-02-16 181 - brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # Added 2021-01-24 182 - bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-22 183 bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2023-09-10 184 - btops = throw "btops has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 185 - btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22 186 - bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14 187 inherit (libsForQt5.mauiPackages) buho; # added 2022-05-17 188 bukut = throw "bukut has been removed since it has been archived by upstream"; # Added 2023-05-24 189 - buttersink = throw "buttersink has been removed: abandoned by upstream"; # Added 2022-04-05 190 # Shorter names; keep the longer name for back-compat. Added 2023-04-11 191 buildFHSUserEnv = buildFHSEnv; 192 buildFHSUserEnvChroot = buildFHSEnvChroot; ··· 200 bitwarden_rs-vault = vaultwarden-vault; 201 202 203 - bs1770gain = throw "bs1770gain has been removed from nixpkgs, as it had no maintainer or reverse dependencies"; # Added 2021-01-02 204 - bsod = throw "bsod has been removed: deleted by upstream"; # Added 2022-01-07 205 - btc1 = throw "btc1 has been removed, it was abandoned by upstream"; # Added 2020-11-03 206 - buildPerlPackage = throw "'buildPerlPackage' has been renamed to/replaced by 'perlPackages.buildPerlPackage'"; # Converted to throw 2022-02-22 207 - buildkite-agent3 = throw "'buildkite-agent3' has been renamed to/replaced by 'buildkite-agent'"; # Converted to throw 2022-02-22 208 - bundler_HEAD = throw "'bundler_HEAD' has been renamed to/replaced by 'bundler'"; # Converted to throw 2022-02-22 209 - bunny = throw "bunny has been removed: deleted by upstream"; # Added 2022-01-07 210 - bypass403 = throw "bypass403 has been removed: deleted by upstream"; # Added 2022-01-07 211 212 ### C ### 213 214 - c14 = throw "c14 is deprecated and archived by upstream"; # Added 2022-04-10 215 - caddy1 = throw "caddy 1.x has been removed from nixpkgs, as it's unmaintained: https://github.com/caddyserver/caddy/blob/master/.github/SECURITY.md#supported-versions"; # Added 2020-10-02 216 - caffe2 = throw "caffe2 has been removed: subsumed under the PyTorch project"; # Added 2022-04-25 217 - calibre-py2 = throw "calibre-py2 has been removed from nixpkgs, as calibre has upgraded to python 3. Please use calibre as replacement"; # Added 2021-01-13 218 - calibre-py3 = throw "calibre-py3 has been removed from nixpkgs, as calibre's default python version is now 3. Please use calibre as replacement"; # Added 2021-01-13 219 callPackage_i686 = pkgsi686Linux.callPackage; 220 - cantarell_fonts = throw "'cantarell_fonts' has been renamed to/replaced by 'cantarell-fonts'"; # Converted to throw 2022-02-22 221 cask = emacs.pkgs.cask; # Added 2022-11-12 222 - cargo-download = throw "cargo-download has been removed from nixpkgs as it is unmaintained, use cargo-clone instead"; # Added 2022-10-11 223 cargo-embed = throw "cargo-embed is now part of the probe-rs package"; # Added 2023-07-03 224 cargo-flash = throw "cargo-flash is now part of the probe-rs package"; # Added 2023-07-03 225 - cargo-tree = throw "cargo-tree has been removed, use the builtin `cargo tree` command instead"; # Added 2020-08-20 226 - carnix = throw "carnix has been removed, use alternatives such as naersk and crate2nix instead"; # Added 2022-11-22 227 - casperjs = throw "casperjs has been removed, it was abandoned by upstream and broken"; 228 - cassandra_2_1 = throw "cassandra_2_1 has been removed, please use cassandra_3_11 instead"; # Added 2022-10-29 229 - cassandra_2_2 = throw "cassandra_2_2 has been removed, please use cassandra_3_11 instead"; # Added 2022-10-29 230 catfish = throw "'catfish' has been renamed to/replaced by 'xfce.catfish'"; # Converted to throw 2023-09-10 231 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API"; 232 ccloud-cli = throw "ccloud-cli has been removed, please use confluent-cli instead"; # Added 2023-06-09 233 - ccnet = throw "ccnet has been removed because seafile does not depend on it anymore"; # Added 2021-03-25 234 - cde-gtk-theme = throw "cde-gtk-theme has been removed from nixpkgs as it shipped with python2 scripts that didn't work anymore"; # Added 2022-01-12 235 - cgmanager = throw "cgmanager was deprecated by lxc and therefore removed from nixpkgs"; # Added 2020-06-05 236 - checkbashism = throw "'checkbashism' has been renamed to/replaced by 'checkbashisms'"; # Converted to throw 2022-02-22 237 chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22 238 chocolateDoom = chocolate-doom; # Added 2023-05-01 239 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27 240 - chronos = throw "chronos has been removed from nixpkgs, as it was unmaintained"; # Added 2020-08-15 241 - chunkwm = throw "chunkwm has been removed: abandoned by upstream"; # Added 2022-01-07 242 - cifs_utils = throw "'cifs_utils' has been renamed to/replaced by 'cifs-utils'"; # Converted to throw 2022-02-22 243 - cipherscan = throw "cipherscan was removed from nixpkgs, as it was unmaintained"; # added 2021-12-11 244 citra = citra-nightly; # added 2022-05-17 245 - ckb = throw "'ckb' has been renamed to/replaced by 'ckb-next'"; # Converted to throw 2022-02-22 246 - clickshare-csc1 = throw "'clickshare-csc1' has been removed as it requires qt4 which is being removed"; # Added 2022-06-16 247 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 248 cpp-ipfs-api = cpp-ipfs-http-client; # Project has been renamed. Added 2022-05-15 249 - cratesIO = throw "cratesIO has been removed, use alternatives such as naersk and crate2nix instead"; # Added 2022-11-22 250 - creddump = throw "creddump has been removed from nixpkgs as the upstream has abandoned the project"; # Added 2022-01-01 251 crispyDoom = crispy-doom; # Added 2023-05-01 252 253 # these are for convenience, not for backward compat and shouldn't expire ··· 264 clang15Stdenv = lowPrio llvmPackages_15.stdenv; 265 clang16Stdenv = lowPrio llvmPackages_16.stdenv; 266 267 - clangAnalyzer = throw "'clangAnalyzer' has been renamed to/replaced by 'clang-analyzer'"; # Converted to throw 2022-02-22 268 clasp = clingo; # added 2022-12-22 269 - claws-mail-gtk2 = throw "claws-mail-gtk2 was removed to get rid of Python 2, please use claws-mail"; # Added 2021-12-05 270 claws-mail-gtk3 = claws-mail; # Added 2021-07-10 271 - clawsMail = throw "'clawsMail' has been renamed to/replaced by 'claws-mail'"; # Converted to throw 2022-02-22 272 - cldr-emoji-annotation = throw "'cldr-emoji-annotation' has been removed, as it was unmaintained; use 'cldr-annotations' instead"; # Added 2022-04-03 273 - clearsilver = throw "clearsilver has been removed: abandoned by upstream"; # Added 2022-03-15 274 - clementineUnfree = throw "clementineUnfree has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 275 - clutter_gtk = throw "'clutter_gtk' has been renamed to/replaced by 'clutter-gtk'"; # Converted to throw 2022-02-22 276 - cmakeWithQt4Gui = throw "cmakeWithQt4Gui has been removed in favor of cmakeWithGui (Qt 5)"; # Added 2021-05 277 codimd = hedgedoc; # Added 2020-11-29 278 inherit (libsForQt5.mauiPackages) communicator; # added 2022-05-17 279 compton = throw "'compton' has been renamed to/replaced by 'picom'"; # Converted to throw 2023-09-10 280 - compton-git = throw "'compton-git' has been renamed to/replaced by 'compton'"; # Converted to throw 2022-02-22 281 concurrencykit = libck; # Added 2021-03 282 - conntrack_tools = throw "'conntrack_tools' has been renamed to/replaced by 'conntrack-tools'"; # Converted to throw 2022-02-22 283 - container-linux-config-transpiler = throw "container-linux-config-transpiler is deprecated and archived by upstream"; # Added 2022-04-05 284 - cool-old-term = throw "'cool-old-term' has been renamed to/replaced by 'cool-retro-term'"; # Converted to throw 2022-02-22 285 - corsmisc = throw "corsmisc has been removed (upstream is gone)"; # Added 2022-01-24 286 - couchdb = throw "couchdb was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 287 - couchdb2 = throw "couchdb2 was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 288 - coreclr = throw "coreclr has been removed from nixpkgs, use dotnet-sdk instead"; # added 2022-06-12 289 - corgi = throw "corgi has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-02 290 - cpp-gsl = throw "'cpp-gsl' has been renamed to/replaced by 'microsoft-gsl'"; # Converted to throw 2022-02-22 291 - cpp_ethereum = throw "cpp_ethereum has been removed; abandoned upstream"; # Added 2020-11-30 292 - cpuminer-multi = throw "cpuminer-multi has been removed: deleted by upstream"; # Added 2022-01-07 293 - crafty = throw "crafty has been removed: deleted by upstream"; # Added 2022-01-07 294 - cryptol = throw "cryptol was removed due to prolonged broken build"; # Added 2020-08-21 295 - cryptpad = throw "cryptpad has been removed, because it was unmaintained in nixpkgs"; # Added 2022-07-04 296 - ctl = throw "ctl has been removed: abandoned by upstream"; # Added 2022-05-13 297 298 - # CUDA Toolkit 299 - cudatoolkit_6 = throw "cudatoolkit_6 has been removed in favor of newer versions"; # Added 2021-02-14 300 - cudatoolkit_65 = throw "cudatoolkit_65 has been removed in favor of newer versions"; # Added 2021-02-14 301 - cudatoolkit_7 = throw "cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 302 - cudatoolkit_7_5 = throw "cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14 303 - cudatoolkit_8 = throw "cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 304 - cudatoolkit_9 = throw "cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 305 - cudatoolkit_9_0 = throw "cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 306 - cudatoolkit_9_1 = throw "cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 307 - cudatoolkit_9_2 = throw "cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 308 - cudatoolkit_10 = throw "cudatoolkit_10 has been renamed to cudaPackages_10.cudatoolkit"; # Added 2022-04-04 309 - cudatoolkit_10_0 = throw "cudatoolkit_10_0 has been renamed to cudaPackages_10_0.cudatoolkit"; # Added 2022-04-04 310 - cudatoolkit_10_1 = throw "cudatoolkit_10_1 has been renamed to cudaPackages_10_1.cudatoolkit"; # Added 2022-04-04 311 - cudatoolkit_10_2 = throw "cudatoolkit_10_2 has been renamed to cudaPackages_10_2.cudatoolkit"; # Added 2022-04-04 312 - cudatoolkit_11_0 = throw "cudatoolkit_11_0 has been renamed to cudaPackages_11_0.cudatoolkit"; # Added 2022-04-04 313 - cudatoolkit_11_1 = throw "cudatoolkit_11_1 has been renamed to cudaPackages_11_1.cudatoolkit"; # Added 2022-04-04 314 - cudatoolkit_11_2 = throw "cudatoolkit_11_2 has been renamed to cudaPackages_11_2.cudatoolkit"; # Added 2022-04-04 315 - cudatoolkit_11_3 = throw "cudatoolkit_11_3 has been renamed to cudaPackages_11_3.cudatoolkit"; # Added 2022-04-04 316 - cudatoolkit_11_4 = throw "cudatoolkit_11_4 has been renamed to cudaPackages_11_4.cudatoolkit"; # Added 2022-04-04 317 - cudatoolkit_11_5 = throw "cudatoolkit_11_5 has been renamed to cudaPackages_11_5.cudatoolkit"; # Added 2022-04-04 318 - cudatoolkit_11_6 = throw "cudatoolkit_11_6 has been renamed to cudaPackages_11_6.cudatoolkit"; # Added 2022-04-04 319 - 320 - cudnn = throw "cudnn is now part of cudaPackages*"; # Added 2022-04-04 321 - cudnn6_cudatoolkit_8 = throw "cudnn6_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 322 - cudnn_cudatoolkit_7 = throw "cudnn_cudatoolkit_7 has been removed in favor of newer versions"; # Added 2021-02-14 323 - cudnn_7_4_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 324 - cudnn_cudatoolkit_7_5 = throw "cudnn_cudatoolkit_7_5 has been removed in favor of newer versions"; # Added 2021-02-14 325 - cudnn_7_6_cudatoolkit_10_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 326 - cudnn_7_6_cudatoolkit_10_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 327 - cudnn_cudatoolkit_8 = throw "cudnn_cudatoolkit_8 has been removed in favor of newer versions"; # Added 2021-02-14 328 - cudnn_8_1_cudatoolkit_10_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 329 - cudnn_8_1_cudatoolkit_11_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 330 - cudnn_8_1_cudatoolkit_11_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 331 - cudnn_8_1_cudatoolkit_11_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 332 - cudnn_8_1_cudatoolkit_10 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 333 - cudnn_8_3_cudatoolkit_10_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 334 - cudnn_8_3_cudatoolkit_11_0 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 335 - cudnn_8_3_cudatoolkit_11_1 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 336 - cudnn_8_3_cudatoolkit_11_2 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 337 - cudnn_8_3_cudatoolkit_11_3 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 338 - cudnn_8_3_cudatoolkit_11_4 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 339 - cudnn_8_3_cudatoolkit_11_5 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 340 - cudnn_8_3_cudatoolkit_10 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 341 - cudnn_8_3_cudatoolkit_11 = throw "cudnn* is now part of cudaPackages*"; # Added 2022-04-04 342 - cudnn_cudatoolkit_9 = throw "cudnn_cudatoolkit_9 has been removed in favor of newer versions"; # Added 2021-04-18 343 - cudnn_cudatoolkit_9_0 = throw "cudnn_cudatoolkit_9_0 has been removed in favor of newer versions"; # Added 2021-04-18 344 - cudnn_cudatoolkit_9_1 = throw "cudnn_cudatoolkit_9_1 has been removed in favor of newer versions"; # Added 2021-04-18 345 - cudnn_cudatoolkit_9_2 = throw "cudnn_cudatoolkit_9_2 has been removed in favor of newer versions"; # Added 2021-04-18 346 - cura_stable = throw "cura_stable was removed because it was broken and used Python 2"; # added 2022-06-05 347 - curl_unix_socket = throw "curl_unix_socket has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 348 - cutensor = throw "cutensor is now part of cudaPackages*"; # Added 2022-04-04 349 - cutensor_cudatoolkit_10 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 350 - cutensor_cudatoolkit_10_1 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 351 - cutensor_cudatoolkit_10_2 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 352 - cutensor_cudatoolkit_11 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 353 - cutensor_cudatoolkit_11_0 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 354 - cutensor_cudatoolkit_11_1 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 355 - cutensor_cudatoolkit_11_2 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 356 - cutensor_cudatoolkit_11_3 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 357 - cutensor_cudatoolkit_11_4 = throw "cutensor* is now part of cudaPackages*"; # Added 2022-04-04 358 - 359 - cloud-print-connector = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; 360 - cquery = throw "cquery has been removed because it is abandoned by upstream. Consider switching to clangd or ccls instead"; # Added 2020-06-15 361 - cups-googlecloudprint = throw "Google Cloudprint is officially discontinued since Jan 2021, more info https://support.google.com/chrome/a/answer/9633006"; 362 cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12 363 - cupsBjnp = throw "'cupsBjnp' has been renamed to/replaced by 'cups-bjnp'"; # Converted to throw 2022-02-22 364 - cups_filters = throw "'cups_filters' has been renamed to/replaced by 'cups-filters'"; # Converted to throw 2022-02-22 365 - curl-impersonate-bin = throw "'curl-impersonate-bin' has been replaced by 'curl-impersonate'"; # Added 2022-10-08 366 - curlcpp = throw "curlcpp has been removed, no active maintainers and no usage within nixpkgs"; # Added 2022-05-10 367 - curaByDagoma = throw "curaByDagoma has been removed from nixpkgs, because it was unmaintained and dependent on python2 packages"; # Added 2022-01-12 368 - curaLulzbot = throw "curaLulzbot has been removed due to insufficient upstream support for a modern dependency chain"; # Added 2021-10-23 369 - cv = throw "'cv' has been renamed to/replaced by 'progress'"; # Converted to throw 2022-02-22 370 cvs_fast_export = cvs-fast-export; # Added 2021-06-10 371 372 ### D ### 373 374 oroborus = throw "oroborus was removed, because it was abandoned years ago."; #Added 2023-09-10 375 - d1x_rebirth = throw "'d1x_rebirth' has been renamed to/replaced by 'dxx-rebirth'"; # Converted to throw 2022-02-22 376 - d2x_rebirth = throw "'d2x_rebirth' has been renamed to/replaced by 'dxx-rebirth'"; # Converted to throw 2022-02-22 377 - dart_dev = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15 378 - dart_old = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15 379 dart_stable = dart; # Added 2020-01-15 380 dat = nodePackages.dat; 381 - dashpay = throw "'dashpay' has been removed because it was unmaintained"; # Added 2022-05-12 382 - dbus_daemon = throw "'dbus_daemon' has been renamed to/replaced by 'dbus.daemon'"; # Converted to throw 2022-02-22 383 - dbus_glib = throw "'dbus_glib' has been renamed to/replaced by 'dbus-glib'"; # Converted to throw 2022-02-22 384 - dbus_libs = throw "'dbus_libs' has been renamed to/replaced by 'dbus'"; # Converted to throw 2022-02-22 385 - dbus_tools = throw "'dbus_tools' has been renamed to/replaced by 'dbus.out'"; # Converted to throw 2022-02-22 386 - dbvisualizer = throw "dbvisualizer has been removed from nixpkgs, as it's unmaintained"; # Added 2020-09-20 387 - dd-agent = throw "dd-agent has been removed in favor of the newer datadog-agent"; # Added 2022-04-26 388 - ddar = throw "ddar has been removed: abandoned by upstream"; # Added 2022-03-18 389 - deadbeef-mpris2-plugin = throw "'deadbeef-mpris2-plugin' has been renamed to/replaced by 'deadbeefPlugins.mpris2'"; # Converted to throw 2022-02-22 390 deadpixi-sam = deadpixi-sam-unstable; 391 392 - debian_devscripts = throw "'debian_devscripts' has been renamed to/replaced by 'debian-devscripts'"; # Converted to throw 2022-02-22 393 debugedit-unstable = debugedit; # Added 2021-11-22 394 - deepspeech = throw "deepspeech was removed in favor of stt. https://github.com/NixOS/nixpkgs/issues/119496"; # added 2021-05-05 395 - deisctl = throw "deisctl was removed ; the service does not exist anymore"; # added 2022-02-06 396 - deis = throw "deis was removed ; the service does not exist anymore"; # added 2022-02-06 397 deltachat-electron = deltachat-desktop; # added 2021-07-18 398 399 - deluge-1_x = throw '' 400 - Deluge 1.x (deluge-1_x) is no longer supported. 401 - Please use Deluge 2.x (deluge-2_x) instead, for example: 402 - 403 - services.deluge.package = pkgs.deluge-2_x; 404 - 405 - Note that it is NOT possible to switch back to Deluge 1.x after this change. 406 - ''; # Added 2021-08-18 407 - 408 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 409 - desktop_file_utils = throw "'desktop_file_utils' has been renamed to/replaced by 'desktop-file-utils'"; # Converted to throw 2022-02-22 410 - devicemapper = throw "'devicemapper' has been renamed to/replaced by 'lvm2'"; # Converted to throw 2022-02-22 411 devserver = throw "'devserver' has been removed in favor of 'miniserve' or other alternatives"; # Added 2023-01-13 412 - dfu-util-axoloti = throw "dfu-util-axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 413 - dhall-text = throw "'dhall-text' has been deprecated in favor of the 'dhall text' command from 'dhall'"; # Added 2022-03-26 414 dhcp = throw "dhcp (ISC DHCP) has been removed from nixpkgs, because it reached its end of life"; # Added 2023-04-04 415 - digikam5 = throw "'digikam5' has been renamed to/replaced by 'digikam'"; # Converted to throw 2022-02-22 416 - dirmngr = throw "dirmngr has been removed: merged into gnupg"; # Added 2022-05-13 417 - disper = throw "disper has been removed: abandoned by upstream"; # Added 2022-03-18 418 - dmtx = throw "'dmtx' has been renamed to/replaced by 'dmtx-utils'"; # Converted to throw 2022-02-22 419 dnnl = oneDNN; # Added 2020-04-22 420 - docbook5_xsl = throw "'docbook5_xsl' has been renamed to/replaced by 'docbook_xsl_ns'"; # Converted to throw 2022-02-22 421 - docbookrx = throw "docbookrx has been removed since it was unmaintained"; # Added 2021-01-12 422 - docbook_xml_xslt = throw "'docbook_xml_xslt' has been renamed to/replaced by 'docbook_xsl'"; # Converted to throw 2022-02-22 423 - doh-proxy = throw "doh-proxy has been removed because upstream abandoned it and its dependencies where removed."; # Added 2022-03-30 424 - docker_compose = throw "'docker_compose' has been renamed to/replaced by 'docker-compose'"; # Converted to throw 2022-02-22 425 - docker-compose_2 = throw "'docker-compose_2' has been renamed to 'docker-compose'"; # Added 2022-06-05 426 - docker-edge = throw "'docker-edge' has been removed, it was an alias for 'docker'"; # Added 2022-06-05 427 dolphin-emu-beta = dolphin-emu; # Added 2023-02-11 428 dolphinEmu = dolphin-emu; # Added 2021-11-10 429 dolphinEmuMaster = dolphin-emu-beta; # Added 2021-11-10 430 dot-http = throw "'dot-http' has been removed: abandoned by upstream. Use hurl instead."; # Added 2023-01-16 431 dotty = scala_3; # Added 2023-08-20 432 dotnet-netcore = dotnet-runtime; # Added 2021-10-07 433 - double_conversion = throw "'double_conversion' has been renamed to/replaced by 'double-conversion'"; # Converted to throw 2022-02-22 434 - draftsight = throw "draftsight has been removed, no longer available as freeware"; # Added 2020-08-14 435 - dragon-drop = throw "'dragon-drop' has been removed in favor of 'xdragon'"; # Added 2022-04-10; 436 dtv-scan-tables_linuxtv = dtv-scan-tables; # Added 2023-03-03 437 dtv-scan-tables_tvheadend = dtv-scan-tables; # Added 2023-03-03 438 - dust = throw "dust has been removed: abandoned by upstream"; # Added 2022-04-21 439 - dvb_apps = throw "dvb_apps has been removed"; # Added 2020-11-03 440 - dwarf_fortress = throw "'dwarf_fortress' has been renamed to/replaced by 'dwarf-fortress'"; # Converted to throw 2022-02-22 441 - dwm-git = throw "dwm-git has been removed from nixpkgs, as it had no updates for 2 years not serving it's purpose"; # Added 2021-02-07 442 dylibbundler = macdylibbundler; # Added 2021-04-24 443 444 ### E ### 445 446 - eagle7 = throw "eagle7 has been removed because it did not support a supported openssl version"; # added 2021-12-15 447 ec2_ami_tools = ec2-ami-tools; # Added 2021-10-08 448 ec2_api_tools = ec2-api-tools; # Added 2021-10-08 449 ec2-utils = amazon-ec2-utils; # Added 2022-02-01 450 - elasticmq = throw "elasticmq has been removed in favour of elasticmq-server-bin"; # Added 2021-01-17 451 - elasticsearch7-oss = throw "elasticsearch7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09 452 453 - elasticsearch-oss = throw "elasticsearch-oss has been removed because there is no oss version of elasticsearch anymore. Use opensearch instead."; # Added 2022-10-04 454 - elasticsearch6 = throw "elasticsearch6 has been removed because it reached end of life"; # Added 2022-10-04 455 - elasticsearch6-oss = throw "elasticsearch6-oss has been removed because it reached end of life"; # Added 2022-10-04 456 - elasticsearch6Plugins = throw "elasticsearch6Plugins has been removed because it reached end of life"; # Added 2022-10-04 457 elasticsearch7Plugins = elasticsearchPlugins; 458 459 # Electron 460 - electron_3 = throw "electron_3 has been removed in favor of newer versions"; # added 2022-01-06 461 - electron_4 = throw "electron_4 has been removed in favor of newer versions"; # added 2022-01-06 462 - electron_5 = throw "electron_5 has been removed in favor of newer versions"; # added 2022-01-06 463 - electron_6 = throw "electron_6 has been removed in favor of newer versions"; # added 2022-01-06 464 - electron_7 = throw "electron_7 has been removed in favor of newer versions"; # added 2022-02-08 465 - electron_8 = throw "electron_8 has been removed in favor of newer versions"; # added 2022-02-08 466 electron_9 = throw "electron_9 has been removed in favor of newer versions"; # added 2023-09-11 467 468 - electrum-dash = throw "electrum-dash has been removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 469 elementary-planner = throw "elementary-planner has been renamed to planify"; # Added 2023-06-24 470 471 elixir_ls = elixir-ls; # Added 2023-03-20 ··· 476 emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04 477 emacsMacport = emacs-macport; # Added 2023-08-10 478 emacsNativeComp = emacs28NativeComp; # Added 2022-06-08 479 - emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 480 emacsPackagesNg = throw "'emacsPackagesNg' has been renamed to/replaced by 'emacs.pkgs'"; # Converted to throw 2023-09-10 481 emacsPackagesNgFor = throw "'emacsPackagesNgFor' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2023-09-10 482 - emacsPackagesNgGen = throw "'emacsPackagesNgGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 483 emacsWithPackages = emacs.pkgs.withPackages; # Added 2020-12-18 484 485 empathy = throw "empathy was removed as it is unmaintained and no longer launches due to libsoup3 migration"; # Added 2023-01-20 486 - enblendenfuse = throw "'enblendenfuse' has been renamed to/replaced by 'enblend-enfuse'"; # Converted to throw 2022-02-22 487 enchant1 = throw "enchant1 has been removed from nixpkgs, as it was unmaintained"; # Added 2023-01-18 488 - encryptr = throw "encryptr was removed because it reached end of life"; # Added 2022-02-06 489 - envdir = throw "envdir has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 490 - envelope = throw "envelope has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 491 enyo-doom = enyo-launcher; # Added 2022-09-09 492 epoxy = libepoxy; # Added 2021-11-11 493 - epsxe = throw "epsxe has been removed from nixpkgs, as it was unmaintained."; # added 2021-12-15 494 - eql = throw "eql has been removed from nixpkgs, because it depended on qt4. eql5 exists, but is not currently pacakged in nixpkgs."; # added 2022-05-09 495 inherit (beam.interpreters) erlangR26 erlangR25 erlangR24; # added 2023-03-21 496 erlang_21 = throw "erlangR21 has been removed in favor of newer versions."; # added 2023-03-21 497 erlangR21 = erlang_21; ··· 499 erlangR22 = erlang_22; 500 erlang_23 = throw "erlangR23 has been removed in favor of newer versions."; # added 2023-09-11 501 erlangR23 = erlang_23; 502 - esniper = throw "esniper has been removed because upstream no longer maintains it (and it no longer works)"; # Added 2021-04-12 503 etcd_3_3 = throw "etcd_3_3 has been removed because upstream no longer maintains it"; # Added 2023-09-29 504 - etcdctl = throw "'etcdctl' has been renamed to/replaced by 'etcd'"; # Converted to throw 2022-02-22 505 eterm = throw "eterm was removed because it is still insecure: https://github.com/mej/Eterm/issues/7"; # Added 2023-09-10 506 - eteroj.lv2 = throw "'eteroj.lv2' has been renamed to/replaced by 'open-music-kontrollers.eteroj'"; # Added 2022-03-09 507 - euca2tools = throw "euca2ools has been removed because it is unmaintained upstream and still uses python2"; # Added 2022-01-01 508 - evilvte = throw "evilvte has been removed from nixpkgs for being unmaintained with security issues and dependant on an old version of vte which was removed"; # Added 2022-01-14 509 - evolution_data_server = throw "'evolution_data_server' has been renamed to/replaced by 'evolution-data-server'"; # Converted to throw 2022-02-22 510 exa = throw "'exa' has been removed because it is unmaintained upstream. Consider using 'eza', a maintained fork"; # Added 2023-09-07 511 exhibitor = throw "'exhibitor' has been removed because it is unmaintained upstream"; # Added 2023-06-20 512 - exfat-utils = throw "'exfat-utils' has been renamed to/replaced by 'exfat'"; # Converted to throw 2022-02-22 513 514 ### F ### 515 516 - facette = throw "facette has been removed"; # Added 2020-01-06 517 faustStk = faustPhysicalModeling; # Added 2023-05-16 518 - faust1 = throw "faust1 has been removed, use faust2 instead"; # Added 2022-12-03 519 - fast-neural-doodle = throw "fast-neural-doodle has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 520 fastnlo = fastnlo_toolkit; # Added 2021-04-24 521 - fbreader = throw "fbreader has been removed, as the upstream project has been archived"; # Added 2022-05-26 522 - fedora-coreos-config-transpiler = throw "fedora-coreos-config-transpiler has been renamed to 'butane'"; # Added 2021-04-13 523 - feedreader = throw "feedreader is no longer activily maintained since 2019. The developer is working on a spiritual successor called NewsFlash."; # Added 2022-05-03 524 inherit (luaPackages) fennel; # Added 2022-09-24 525 fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H"; # preserve 526 - ffadoFull = throw "'ffadoFull' has been renamed to/replaced by 'ffado'"; # Converted to throw 2022-02-22 527 - ffmpeg-sixel = throw "ffmpeg-sixel has been removed, because it was an outdated/unmaintained fork of ffmpeg"; # Added 2022-03-23"; 528 - ffmpeg_3 = throw "ffmpeg_3 was removed from nixpkgs, because it was an outdated and insecure release"; # added 2022-01-17 529 - filebeat6 = throw "filebeat6 has been removed because it reached end of life"; # Added 2022-10-04 530 findimagedupes = throw "findimagedupes has been removed because the perl bindings are no longer compatible"; # Added 2023-07-10 531 finger_bsd = bsd-finger; 532 fingerd_bsd = bsd-fingerd; 533 - firefox-esr-68 = throw "Firefox 68 ESR was removed because it reached end of life with its final release 68.12esr on 2020-08-25"; 534 - firefox-esr-wayland = firefox-esr; # Added 2022-11-15 535 - firefox-esr-wrapper = throw "'firefox-esr-wrapper' has been renamed to/replaced by 'firefox-esr'"; # Converted to throw 2022-02-22 536 firefox-wayland = firefox; # Added 2022-11-15 537 - firefoxWrapper = throw "'firefoxWrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22 538 - firefox-wrapper = throw "'firefox-wrapper' has been renamed to/replaced by 'firefox'"; # Converted to throw 2022-02-22 539 firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09 540 - fish-foreign-env = throw "fish-foreign-env has been replaced with fishPlugins.foreign-env"; # Added 2020-12-29, modified 2021-01-10 541 fishfight = jumpy; # Added 2022-08-03 542 fitnesstrax = throw "fitnesstrax was removed from nixpkgs because it disappeared upstream and no longer compiles"; # added 2023-07-04 543 - flameGraph = throw "'flameGraph' has been renamed to/replaced by 'flamegraph'"; # Converted to throw 2022-02-22 544 - flashplayer-standalone-debugger = throw "flashplayer-standalone-debugger has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 545 - flashplayer-standalone = throw "flashplayer-standalone has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 546 - flashplayer = throw "flashplayer has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 547 - flashtool = throw "flashtool was removed from nixpkgs, because the download is down for copyright reasons and the site looks very fishy"; # Added 2021-06-31 548 - flatbuffers_1_12 = throw "FlatBuffers version 1.12 has been removed, because upstream no longer maintains it"; # Added 2022-05-12 549 flatbuffers_2_0 = flatbuffers; # Added 2022-05-12 550 - flink_1_5 = throw "flink_1_5 was removed, use flink instead"; # Added 2021-01-25 551 - flutter-beta = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15 552 - flutter-dev = throw "Non-stable versions of Flutter have been removed. You can use flutterPackages.mkFlutter to generate a package for other Flutter versions"; # Added 2020-01-15 553 flutter2 = throw "flutter2 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 554 flutter37 = throw "flutter37 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 555 - flvtool2 = throw "flvtool2 has been removed"; # Added 2020-11-03 556 - fmbt = throw "fmbt was removed, because it depended on qt4 and python2 and was unmaintained upstream"; # Added 2022-06-13 557 - fme = throw "fme was removed, because it is old and uses Glade, a discontinued library"; # Added 2022-01-26 558 foldingathome = fahclient; # Added 2020-09-03 559 - font-awesome-ttf = throw "'font-awesome-ttf' has been renamed to/replaced by 'font-awesome'"; # Converted to throw 2022-02-22 560 - 561 - fontconfig-penultimate = throw '' 562 - fontconfig-penultimate has been removed. 563 - It was a fork of the abandoned fontconfig-ultimate. 564 - ''; # Added 2020-07-21 565 - 566 - fontconfig_210 = throw '' 567 - fontconfig 2.10.x hasn't had a release in years, is vulnerable to CVE-2016-5384 568 - and has only been used for old fontconfig caches. 569 - ''; 570 571 - foomatic_filters = throw "'foomatic_filters' has been renamed to/replaced by 'foomatic-filters'"; # Converted to throw 2022-02-22 572 foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 573 foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 574 foundationdb60 = throw "foundationdb60 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 575 foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 576 foxitreader = throw "foxitreader has been removed because it had vulnerabilities and was unmaintained"; # added 2023-02-20 577 - fscryptctl-experimental = throw "The package fscryptctl-experimental has been removed. Please switch to fscryptctl"; # Added 2021-11-07 578 - fsharp41 = throw "fsharp41 has been removed, please use dotnet-sdk_5 or later"; 579 - fslint = throw "fslint has been removed: end of life. Upstream recommends using czkawka (https://qarmin.github.io/czkawka/) instead"; # Added 2022-01-15 580 - fuse_exfat = throw "'fuse_exfat' has been renamed to/replaced by 'exfat'"; # Converted to throw 2022-02-22 581 - fuseki = throw "'fuseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22 582 fuse2fs = if stdenv.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too. 583 fx_cast_bridge = fx-cast-bridge; # added 2023-07-26 584 - fwupdate = throw "fwupdate was merged into fwupd"; # Added 2020-05-19 585 586 fcitx = throw "fcitx is deprecated, please use fcitx5 instead."; # Added 2023-03-13 587 fcitx-engines = throw "fcitx-engines is deprecated, please use fcitx5 instead."; # Added 2023-03-13 ··· 590 ### G ### 591 592 g4py = python3Packages.geant4; # Added 2020-06-06 593 - gaia = throw "gaia has been removed because it seems abandoned upstream and uses no longer supported dependencies"; # Added 2020-06-06 594 - gambatte = throw "gambatte has been removed, because the project has been taken private"; # Added 2022-05-26 595 - gammy = throw "'gammy' is deprecated upstream and has been replaced by 'gummy'"; # Added 2022-09-03 596 garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17 597 - gawp = throw "gawp has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 598 - gdal_1_11 = throw "gdal_1_11 was removed. Use gdal instead"; # Added 2021-04-03 599 - gdb-multitarget = throw "'gdb-multitarget' has been renamed to/replaced by 'gdb'"; # Converted to throw 2022-02-22 600 - gdk_pixbuf = throw "'gdk_pixbuf' has been renamed to/replaced by 'gdk-pixbuf'"; # Converted to throw 2022-02-22 601 geekbench4 = throw "'geekbench4' has been renamed to 'geekbench_4'"; # Added 2023-03-10 602 geekbench5 = throw "'geekbench5' has been renamed to 'geekbench_5'"; # Added 2023-03-10 603 - getmail = throw "getmail has been removed from nixpkgs, migrate to getmail6"; # Added 2022-01-12 604 - gettextWithExpat = throw "'gettextWithExpat' has been renamed to/replaced by 'gettext'"; # Converted to throw 2022-02-22 605 - gfm = throw "gfm has been removed"; # Added 2021-01-15 606 ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18 607 - giblib = throw " giblib has been removed from nixpkgs because upstream is gone"; # Added 2022-01-23 608 - giflib_4_1 = throw "giflib_4_1 has been removed; use giflib instead"; # Added 2020-02-12 609 - git-annex-remote-b2 = throw "git-annex-remote-b2 has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 610 - git-bz = throw "giz-bz has been removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01 611 git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13 612 613 gitAndTools = self // { ··· 620 topGit = top-git; 621 }; # Added 2021-01-14 622 623 - gitin = throw "gitin has been remove because it was unmaintained and depended on an insecure version of libgit2"; # Added 2021-12-07 624 - gitinspector = throw "gitinspector has been removed because it doesn't work with python3"; # Added 2022-01-12 625 gitter = throw "gitter has been removed since the client has been abandoned by upstream with the backend migration to Matrix"; # Added 2023-09-18 626 - gksu = throw "gksu has been removed"; # Added 2022-01-16 627 - glib_networking = throw "'glib_networking' has been renamed to/replaced by 'glib-networking'"; # Converted to throw 2022-02-22 628 - glimpse = throw "glimpse was removed, as the project was discontinued. You can use gimp instead."; # Added 2022-07-11 629 gmailieer = lieer; # Added 2020-04-19 630 gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02 631 - gmvault = throw "gmvault has been removed because it is unmaintained, mostly broken, and insecure"; # Added 2021-03-08 632 - gnash = throw "gnash has been removed; broken and abandoned upstream"; # added 2022-02-06 633 gnatboot11 = gnat-bootstrap11; 634 gnatboot12 = gnat-bootstrap12; 635 gnatboot = gnat-bootstrap; 636 - gnome-breeze = throw "gnome-breeze has been removed, use libsForQt5.breeze-gtk instead"; # Added 2022-04-22 637 gnome-firmware-updater = gnome-firmware; # added 2022-04-14 638 gnome-passwordsafe = gnome-secrets; # added 2022-01-30 639 gnome-mpv = throw "'gnome-mpv' has been renamed to/replaced by 'celluloid'"; # Converted to throw 2023-09-10 640 - gnome-sharp = throw "gnome-sharp has been removed from nixpkgs"; # Added 2022-01-15 641 - gnome-themes-standard = throw "'gnome-themes-standard' has been renamed to/replaced by 'gnome-themes-extra'"; # Converted to throw 2022-02-22 642 gnome_user_docs = throw "'gnome_user_docs' has been renamed to/replaced by 'gnome-user-docs'"; # Converted to throw 2023-09-10 643 - gnome_doc_utils = throw "'gnome_doc_utils' has been renamed to/replaced by 'gnome-doc-utils'"; # Converted to throw 2022-02-22 644 - gnome_themes_standard = throw "'gnome_themes_standard' has been renamed to/replaced by 'gnome-themes-standard'"; # Converted to throw 2022-02-22 645 646 gnuradio-with-packages = gnuradio3_7.override { 647 extraPackages = lib.attrVals [ ··· 652 gmock = gtest; # moved from top-level 2021-03-14 653 654 gnome3 = gnome; # Added 2021-05-07 655 - gnupg20 = throw "gnupg20 has been removed from nixpkgs as upstream dropped support on 2017-12-31";# Added 2020-07-12 656 gnuradio3_7 = throw "gnuradio3_7 has been removed because it required Python 2"; # Added 2022-01-16 657 gnuradio-ais = throw "'gnuradio-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10 658 gnuradio-gsm = throw "'gnuradio-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10 ··· 660 gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 661 gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 662 gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 663 - gnustep-make = throw "'gnustep-make' has been renamed to/replaced by 'gnustep.make'"; # Converted to throw 2022-02-22 664 - gnuvd = throw "gnuvd was removed because the backend service is missing"; # Added 2020-01-14 665 gobby5 = gobby; # Added 2021-02-01 666 - gobjectIntrospection = throw "'gobjectIntrospection' has been renamed to/replaced by 'gobject-introspection'"; # Converted to throw 2022-02-22 667 668 #godot 669 godot = throw "godot has been renamed to godot3 to distinguish from version 4"; # Added 2023-07-16 ··· 671 godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16 672 godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16 673 674 - gogoclient = throw "gogoclient has been removed, because it was unmaintained"; # Added 2021-12-15 675 - goklp = throw "goklp has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 676 - golly-beta = throw "golly-beta has been removed: use golly instead"; # Added 2022-03-21 677 - goimports = throw "'goimports' has been renamed to/replaced by 'gotools'"; # Converted to throw 2022-02-22 678 - gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # Added 2020-04-23 679 - googleAuthenticator = throw "'googleAuthenticator' has been renamed to/replaced by 'google-authenticator'"; # Converted to throw 2022-02-22 680 - googleearth = throw "the non-pro version of Google Earth was removed because it was discontinued and downloading it isn't possible anymore"; # Added 2022-01-22 681 google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10 682 - google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # Added 2021-03-07 683 - google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # Added 2021-03-07 684 - gosca = throw "gosca has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-30 685 - google-play-music-desktop-player = throw "GPMDP shows a black screen, upstream homepage is dead, use 'ytmdesktop' instead"; # Added 2022-06-16 686 - go-langserver = throw "go-langserver has been replaced by gopls"; # Added 2022-06-30 687 - go-mk = throw "go-mk has been dropped due to the lack of maintenance from upstream since 2015"; # Added 2022-06-02 688 - go-pup = throw "'go-pup' has been renamed to/replaced by 'pup'"; # Converted to throw 2022-02-22 689 - go-repo-root = throw "go-repo-root has been dropped due to the lack of maintenance from upstream since 2014"; # Added 2022-06-02 690 go-thumbnailer = thud; # Added 2023-09-21 691 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10 692 - gpgstats = throw "gpgstats has been removed: upstream is gone"; # Added 2022-02-06 693 - gpshell = throw "gpshell has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-17 694 695 graalvm11-ce = throw "graalvm11-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 696 graalvm17-ce = throw "graalvm17-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 697 graalvm19-ce = throw "graalvm19-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 698 - gradio = throw "gradio has been removed because it is unmaintained, use shortwave instead"; # Added 2022-06-03 699 gradle_4 = throw "gradle_4 has been removed because it's no longer being updated"; # Added 2023-01-17 700 gradle_5 = throw "gradle_5 has been removed because it's no longer being updated"; # Added 2023-01-17 701 - grafana-mimir = throw "'grafana-mimir' has been renamed to/replaced by 'mimir'"; # Added 2022-06-07 702 gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10 703 - grantlee5 = throw "'grantlee5' has been renamed to/replaced by 'libsForQt5.grantlee'"; # Converted to throw 2022-02-22 704 graylog = throw "graylog is now available in versions 3.3 up to 5.0. Please mind the upgrade path and choose the appropriate version. Direct upgrading from 3.3 to 4.3 or above is not supported"; # Added 2023-04-24 705 gr-gsm = throw "'gr-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10 706 - grib-api = throw "grib-api has been replaced by ecCodes => https://confluence.ecmwf.int/display/ECC/GRIB-API+migration"; # Added 2022-01-05 707 gringo = clingo; # added 2022-11-27 708 gr-limesdr = throw "'gr-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2023-09-10 709 gr-nacl = throw "'gr-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 ··· 711 gr-rds = throw "'gr-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 712 grub2_full = grub2; # Added 2022-11-18 713 grub = throw "grub1 was removed after not being maintained upstream for a decade. Please switch to another bootloader"; # Added 2023-04-11 714 - grv = throw "grv has been dropped due to the lack of maintenance from upstream since 2019"; # Added 2022-06-01 715 - gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22 716 - gsl_1 = throw "'gsl_1' has been renamed to/replaced by 'gsl'"; # Added 2022-11-19 717 - gtk_doc = throw "'gtk_doc' has been renamed to/replaced by 'gtk-doc'"; # Converted to throw 2022-02-22 718 - gtklick = throw "gtklick has been removed from nixpkgs as the project is stuck on python2"; # Added 2022-01-01 719 - gtmess = throw "gtmess has been removed, because it was a MSN client."; # add 2021-12-15 720 - guile-gnome = throw "guile-gnome has been removed"; # Added 2022-01-16 721 - guileCairo = throw "'guileCairo' has been renamed to/replaced by 'guile-cairo'"; # Converted to throw 2022-02-22 722 - guileGnome = throw "guile-gnome has been removed"; # Added 2022-01-16 723 - guileLint = throw "'guileLint' has been renamed to/replaced by 'guile-lint'"; # Converted to throw 2022-02-22 724 - guile_lib = throw "'guile_lib' has been renamed to/replaced by 'guile-lib'"; # Converted to throw 2022-02-22 725 - guile_ncurses = throw "'guile_ncurses' has been renamed to/replaced by 'guile-ncurses'"; # Converted to throw 2022-02-22 726 - gupnp_av = throw "'gupnp_av' has been renamed to/replaced by 'gupnp-av'"; # Converted to throw 2022-02-22 727 - gupnp_dlna = throw "'gupnp_dlna' has been renamed to/replaced by 'gupnp-dlna'"; # Converted to throw 2022-02-22 728 - gupnp_igd = throw "'gupnp_igd' has been renamed to/replaced by 'gupnp-igd'"; # Converted to throw 2022-02-22 729 - gupnptools = throw "'gupnptools' has been renamed to/replaced by 'gupnp-tools'"; # Converted to throw 2022-02-22 730 - gutenberg = throw "'gutenberg' has been renamed to/replaced by 'zola'"; # Converted to throw 2022-02-22 731 - gwtdragdrop = throw "gwtdragdrop was removed: abandoned by upstream"; # Added 2022-02-06 732 - gwtwidgets = throw "gwtwidgets was removed: unmaintained"; # Added 2022-02-06 733 734 ### H ### 735 736 - hal-flash = throw "hal-flash has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 737 - hardlink = throw "hardlink was merged into util-linux since 2019-06-14."; # Added 2022-08-12 738 inherit (harePackages) hare harec; # Added 2022-08-10 739 - hawkthorne = throw "hawkthorne has been removed because it depended on a broken version of love"; # Added 2022-01-15 740 haxe_3_2 = throw "'haxe_3_2' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 741 haxe_3_4 = throw "'haxe_3_4' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 742 - hdr-plus = throw "hdr-plus has been removed because it is unmaintained, often breaks and no longer consumed as a dependency"; # Added 2022-11-08 743 - heapster = throw "Heapster is now retired. See https://github.com/kubernetes-retired/heapster/blob/master/docs/deprecation.md"; # Added 2022-04-05 744 - heartbeat6 = throw "heartbeat6 has been removed because it reached end of life"; # Added 2022-10-04 745 - heimdalFull = throw "'heimdalFull' has been renamed to/replaced by 'heimdal'"; # Converted to throw 2022-02-22 746 - heme = throw "heme has been removed: upstream is gone"; # added 2022-02-06 747 hepmc = throw "'hepmc' has been renamed to/replaced by 'hepmc2'"; # Converted to throw 2023-09-10 748 - hicolor_icon_theme = throw "'hicolor_icon_theme' has been renamed to/replaced by 'hicolor-icon-theme'"; # Converted to throw 2022-02-22 749 - holdingnuts = throw "holdingnuts was removed from nixpkgs, as the project is no longer developed"; # Added 2022-05-10 750 - holochain-go = throw "holochain-go was abandoned by upstream"; # Added 2022-01-01 751 - htmlTidy = throw "'htmlTidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22 752 ht-rust = xh; # Added 2021-02-13 753 - hydra-flakes = throw "hydra-flakes: Flakes support has been merged into Hydra's master. Please use `hydra_unstable` now"; # Added 2020-04-06 754 hydra-unstable = hydra_unstable; # added 2022-05-10 755 - hydrogen_0 = throw "hydrogen_0 has been removed, because it depended on qt4"; # Added 2022-06-13 756 - hyperspace-cli = throw "hyperspace-cli is out of date, and has been deprecated upstream in favour of using the individual repos instead"; # Added 2022-08-29 757 758 ### I ### 759 760 i3-gaps = i3; # Added 2023-01-03 761 - i3cat = throw "i3cat has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 762 - iana_etc = throw "'iana_etc' has been renamed to/replaced by 'iana-etc'"; # Converted to throw 2022-02-22 763 - iasl = throw "iasl has been removed, use acpica-tools instead"; # Added 2021-08-08 764 - ibus-qt = throw "ibus-qt has been removed, because it depended on qt4"; # Added 2022-06-09 765 - ical2org = throw "ical2org has been dropped due to the lack of maintanence from upstream since 2018"; # Added 2022-06-02 766 - icecat-bin = throw "icecat-bin has been removed, the binary builds are not maintained upstream"; # Added 2022-02-15 767 icedtea8_web = throw "'icedtea8_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2023-09-10 768 icedtea_web = throw "'icedtea_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2023-09-10 769 - icu59 = throw "icu59 has been removed, use a more recent version instead"; # Added 2022-05-14 770 - icu65 = throw "icu65 has been removed, use a more recent version instead"; # Added 2022-05-14 771 - idea = throw "'idea' has been renamed to/replaced by 'jetbrains'"; # Converted to throw 2022-02-22 772 - ike = throw "ike has been removed, because it was unmaintained"; # Added 2022-05-26 773 - imapproxy = throw "imapproxy has been removed because it did not support a supported openssl version"; # added 2021-12-15 774 imag = throw "'imag' has been removed, upstream gone"; # Added 2023-01-13 775 imagemagick7Big = imagemagickBig; # Added 2021-02-22 776 imagemagick7 = imagemagick; # Added 2021-02-22 777 imagemagick7_light = imagemagick_light; # Added 2021-02-22 778 imlib = throw "imlib has been dropped due to the lack of maintenance from upstream since 2004"; # Added 2023-01-04 779 - impressive = throw "impressive has been removed due to lack of released python 2 support and maintainership in nixpkgs"; # Added 2022-01-27 780 instead-launcher = throw "instead-launcher has been removed, because it depended on qt4"; # Added 2023-07-26 781 insync-v3 = throw "insync-v3 has been merged into the insync package; use insync instead"; #Added 2023-05-13 782 - i-score = throw "i-score has been removed: abandoned upstream"; # Added 2020-11-21 783 - inboxer = throw "inboxer has been removed as it is no longer maintained and no longer works as Google shut down the inbox service this package wrapped"; 784 index-fm = libsForQt5.mauiPackages.index; # added 2022-05-17 785 infiniband-diags = throw "'infiniband-diags' has been renamed to/replaced by 'rdma-core'"; # Converted to throw 2023-09-10 786 - ino = throw "ino has been removed from nixpkgs, the project is stuck on python2 and upstream has archived the project"; # Added 2022-01-12 787 inotifyTools = inotify-tools; 788 - intecture-agent = throw "intecture-agent has been removed, because it was no longer maintained upstream"; # added 2021-12-15 789 - intecture-auth = throw "intecture-auth has been removed, because it was no longer maintained upstream"; # added 2021-12-15 790 - intecture-cli = throw "intecture-cli has been removed, because it was no longer maintained upstream"; # added 2021-12-15 791 - interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05 792 inter-ui = inter; # Added 2021-03-27 793 - iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06 794 iouyap = throw "'iouyap' is deprecated and archived by upstream, use 'ubridge' instead"; # Added 2023-09-21 795 ipfs = kubo; # Added 2022-09-27 796 ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27 797 ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27 798 ipfs-migrator = kubo-migrator; # Added 2022-09-27 799 iproute = iproute2; # moved from top-level 2021-03-14 800 - iproute_mptcp = throw "'iproute_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 801 - ipsecTools = throw "ipsecTools has benn removed, because it was no longer maintained upstream"; # Added 2021-12-15 802 - itch-setup = throw "itch-setup has benn removed, use itch instead"; # Added 2022-06-02 803 804 ### J ### 805 806 807 jack2Full = jack2; # moved from top-level 2021-03-14 808 - jami-client-gnome = throw "jami-client-gnome has been removed: abandoned upstream"; # Added 2022-05-15 809 jami-client-qt = jami-client; # Added 2022-11-06 810 jami-client = jami; # Added 2023-02-10 811 jami-daemon = jami.daemon; # Added 2023-02-10 812 - jami-libclient = throw "jami-libclient has been removed: moved into jami-qt"; # Added 2022-07-29 813 - jamomacore = throw "jamomacore has been removed: abandoned upstream"; # Added 2020-11-21 814 - jbidwatcher = throw "jbidwatcher was discontinued in march 2021"; # Added 2021-03-15 815 - jbuilder = throw "'jbuilder' has been renamed to/replaced by 'dune_1'"; # Converted to throw 2022-02-22 816 - jd = throw "jd has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-03 817 - jellyfin_10_5 = throw "Jellyfin 10.5 is no longer supported and contains a security vulnerability. Please upgrade to a newer version"; # Added 2021-04-26 818 jfbpdf = throw "'jfbpdf' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 819 jfbview = throw "'jfbview' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 820 jira-cli = throw "jira-cli was removed because it is no longer maintained"; # Added 2023-02-28 821 - joseki = throw "'joseki' has been renamed to/replaced by 'apache-jena-fuseki'"; # Converted to throw 2022-02-22 822 - journalbeat = throw "journalbeat7 has been removed upstream. Use filebeat with the journald input instead"; # Added 2022-10-04 823 - journalbeat6 = throw "journalbeat6 has been removed because it reached end of life"; # Added 2022-10-04 824 - journalbeat7 = throw "journalbeat7 has been removed upstream. Use filebeat with the journald input instead"; # Added 2022-10-04 825 826 # Julia 827 - julia_07 = throw "julia_07 has been deprecated in favor of the latest LTS version"; # Added 2020-09-15 828 - julia_1 = throw "julia_1 has been deprecated in favor of julia_10 as it was ambiguous"; # Added 2021-03-13 829 - julia_10 = throw "julia_10 has been deprecated in favor of the latest stable version"; # Added 2022-11-15 830 - julia_11 = throw "julia_11 has been deprecated in favor of the latest stable version"; # Added 2020-09-15 831 - julia_13 = throw "julia_13 has been deprecated in favor of the latest stable version"; # Added 2021-03-13 832 - julia_15 = throw "julia_15 has been deprecated in favor of the latest stable version"; # Added 2022-11-15 833 - julia_10-bin = throw "julia_10-bin has been deprecated in favor of the latest LTS version"; # Added 2021-12-02 834 - julia_17-bin = throw "julia_17-bin has been deprecated in favor of the latest stable version"; # Added 2022-09-04 835 836 - json_glib = throw "'json_glib' has been renamed to/replaced by 'json-glib'"; # Converted to throw 2022-02-22 837 - jvmci8 = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # Added 2021-10-15 838 839 ### K ### 840 841 # k3d was a 3d editing software k-3d - "k3d has been removed because it was broken and has seen no release since 2016" Added 2022-01-04 842 # now kube3d/k3d will take it's place 843 kube3d = k3d; # Added 2022-0705 844 - k9copy = throw "k9copy has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-11-06 845 kafkacat = kcat; # Added 2021-10-07 846 - kbdKeymaps = throw "kbdKeymaps is not needed anymore since dvp and neo are now part of kbd"; # Added 2021-04-11 847 kdeconnect = plasma5Packages.kdeconnect-kde; # Added 2020-10-28 848 - kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-06-16 849 - kdiff3-qt5 = throw "'kdiff3-qt5' has been renamed to/replaced by 'kdiff3'"; # Converted to throw 2022-02-22 850 - keepass-keefox = throw "'keepass-keefox' has been renamed to/replaced by 'keepass-keepassrpc'"; # Converted to throw 2022-02-22 851 keepassx = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 852 - keepassx-community = throw "'keepassx-community' has been renamed to/replaced by 'keepassxc'"; # Converted to throw 2022-02-22 853 - keepassx-reboot = throw "'keepassx-reboot' has been renamed to/replaced by 'keepassx-community'"; # Converted to throw 2022-02-22 854 keepassx2 = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 855 - keepassx2-http = throw "'keepassx2-http' has been renamed to/replaced by 'keepassx-reboot'"; # Converted to throw 2022-02-22 856 - keepnote = throw "keepnote has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-01 857 kerberos = libkrb5; # moved from top-level 2021-03-14 858 kexectools = kexec-tools; # Added 2021-09-03 859 - kexpand = throw "kexpand awless has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-01 860 - keybase-go = throw "'keybase-go' has been renamed to/replaced by 'keybase'"; # Converted to throw 2022-02-22 861 keysmith = libsForQt5.kdeGear.keysmith; # Added 2021-07-14 862 kfctl = throw "kfctl is broken and has been archived by upstream" ; # Added 2023-08-21 863 kgx = gnome-console; # Added 2022-02-19 864 - kibana7-oss = throw "kibana7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09 865 kicad-with-packages3d = throw "'kicad-with-packages3d' has been renamed to/replaced by 'kicad'"; # Converted to throw 2023-09-10 866 - kindlegen = throw "kindlegen has been removed from nixpkgs, as it's abandoned and no longer available for download"; # Added 2021-03-09 867 - kinetic-cpp-client = throw "kinetic-cpp-client has been removed from nixpkgs, as it's abandoned"; # Added 2020-04-28 868 - kino = throw "kino has been removed because it was broken and abandoned"; # Added 2021-04-25 869 kio-admin = libsForQt5.kdeGear.kio-admin; # Added 2023-03-18 870 - knockknock = throw "knockknock has been removed from nixpkgs because the upstream project is abandoned"; # Added 2022-01-01 871 - kodestudio = throw "kodestudio has been removed from nixpkgs, as the nix package has been long unmaintained and out of date."; # Added 2022-06-07 872 kodiGBM = kodi-gbm; 873 kodiPlain = kodi; 874 kodiPlainWayland = kodi-wayland; 875 kodiPlugins = kodiPackages; # Added 2021-03-09; 876 kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # Added 2021-03-23 877 krb5Full = krb5; 878 - krename-qt5 = throw "'krename-qt5' has been renamed to/replaced by 'krename'"; # Converted to throw 2022-02-22 879 krita-beta = krita; # moved from top-level 2021-12-23 880 - kube-aws = throw "kube-aws is deprecated and archived by upstream"; # Added 2022-04-05 881 kubei = kubeclarity; # Added 2023-05-20 882 - kubeless = throw "kubeless is deprecated and archived by upstream"; # Added 2022-04-05 883 - kubicorn = throw "kubicorn has been dropped due to the lack of maintenance from upstream since 2019"; # Added 2022-05-30 884 kuma-prometheus-sd = throw "kuma-prometheus-sd has been deprecated upstream"; # Added 2023-07-02 885 - kvm = throw "'kvm' has been renamed to/replaced by 'qemu_kvm'"; # Converted to throw 2022-02-22 886 887 ### L ### 888 889 larynx = piper-tts; # Added 2023-05-09 890 - lastfmsubmitd = throw "lastfmsubmitd was removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 891 latinmodern-math = lmmath; 892 ldgallery = throw "'ldgallery' has been removed from nixpkgs. Use the Flake provided by ldgallery instead"; # Added 2023-07-26 893 - letsencrypt = throw "'letsencrypt' has been renamed to/replaced by 'certbot'"; # Converted to throw 2022-02-22 894 lfs = dysk; # Added 2023-07-03 895 - libGL_driver = throw "'libGL_driver' has been renamed to/replaced by 'mesa.drivers'"; # Converted to throw 2022-02-22 896 - libaudit = throw "'libaudit' has been renamed to/replaced by 'audit'"; # Converted to throw 2022-02-22 897 - libayatana-indicator-gtk2 = throw "'libayatana-indicator-gtk2' has been removed from nixpkgs, as gtk2 is deprecated"; # Added 2022-10-18 898 libayatana-indicator-gtk3 = libayatana-indicator; # Added 2022-10-18 899 - libayatana-appindicator-gtk2 = throw "'libayatana-appindicator-gtk2' has been removed from nixpkgs, as gtk2 is deprecated"; # Added 2022-10-18 900 libayatana-appindicator-gtk3 = libayatana-appindicator; # Added 2022-10-18 901 libbencodetools = bencodetools; # Added 2022-07-30 902 - libbluedevil = throw "'libbluedevil' (Qt4) is unmaintained and unused since 'kde4.bluedevil's removal in 2017"; # Added 2022-06-14 903 libbpf_1 = libbpf; # Added 2022-12-06 904 - libcanberra_gtk2 = throw "'libcanberra_gtk2' has been renamed to/replaced by 'libcanberra-gtk2'"; # Converted to throw 2022-02-22 905 - libcanberra_gtk3 = throw "'libcanberra_gtk3' has been renamed to/replaced by 'libcanberra-gtk3'"; # Converted to throw 2022-02-22 906 - libcap_manpages = throw "'libcap_manpages' has been renamed to/replaced by 'libcap.doc'"; # Converted to throw 2022-02-22 907 libcap_pam = throw "'libcap_pam' has been replaced with 'libcap'"; # Converted to throw 2023-09-10 908 - libcap_progs = throw "'libcap_progs' has been renamed to/replaced by 'libcap.out'"; # Converted to throw 2022-02-22 909 - libco-canonical = throw "libco-canonical: Canonical deleted the repo, libco-canonical is not used anymore"; # Added 2021-05-16 910 - libcroco = throw "libcroco has been removed as it's no longer used in any derivations"; # Added 2020-03-04 911 - libdbusmenu-glib = throw "'libdbusmenu-glib' has been renamed to/replaced by 'libdbusmenu'"; # Converted to throw 2022-02-22 912 - libdbusmenu_qt = throw "'libdbusmenu_qt' (Qt4) is deprecated and unused, use 'libsForQt5.libdbusmenu'"; # Added 2022-06-14 913 - libdbusmenu_qt5 = throw "'libdbusmenu_qt5' has been renamed to/replaced by 'libsForQt5.libdbusmenu'"; # Converted to throw 2022-02-22 914 - libdigidoc = throw "'libdigidoc' is unused in nixpkgs, deprecated and archived by upstream, use 'libdigidocpp' instead"; # Added 2022-06-03 915 - liberation_ttf_v1_from_source = throw "'liberation_ttf_v1_from_source' has been renamed to/replaced by 'liberation_ttf_v1'"; # Converted to throw 2022-02-22 916 - liberation_ttf_v2_from_source = throw "'liberation_ttf_v2_from_source' has been renamed to/replaced by 'liberation_ttf_v2'"; # Converted to throw 2022-02-22 917 - liberationsansnarrow = throw "'liberationsansnarrow' has been renamed to/replaced by 'liberation-sans-narrow'"; # Converted to throw 2022-02-22 918 - libgksu = throw "libgksu has been removed"; # Added 2022-01-16 919 libgme = game-music-emu; # Added 2022-07-20 920 - libgnome_keyring = throw "'libgnome_keyring' has been renamed to/replaced by 'libgnome-keyring'"; # Converted to throw 2022-02-22 921 - libgnome_keyring3 = throw "'libgnome_keyring3' has been renamed to/replaced by 'libgnome-keyring3'"; # Converted to throw 2022-02-22 922 libgpgerror = libgpg-error; # Added 2021-09-04 923 - libgroove = throw "libgroove has been removed, because it depends on an outdated and insecure version of ffmpeg"; # Added 2022-01-21 924 - libgumbo = throw "'libgumbo' has been renamed to/replaced by 'gumbo'"; # Converted to throw 2022-02-22 925 libheimdal = heimdal; # Added 2022-11-18 926 libintlOrEmpty = throw "'libintlOrEmpty' has been replaced by gettext"; # Converted to throw 2023-09-10 927 libixp_hg = libixp; 928 libjpeg_drop = libjpeg_original; # Added 2020-06-05 929 - libjreen = throw "libjreen has been removed, because it did not support a recent version of qt5"; # Added 2022-06-12 930 - libjson_rpc_cpp = throw "'libjson_rpc_cpp' has been renamed to/replaced by 'libjson-rpc-cpp'"; # Converted to throw 2022-02-22 931 - libkml = throw "libkml has been removed from nixpkgs, as it's abandoned and no package needed it"; # Added 2021-11-09 932 - liblapackWithoutAtlas = throw "'liblapackWithoutAtlas' has been renamed to/replaced by 'lapack-reference'"; # Converted to throw 2022-02-22 933 liblastfm = libsForQt5.liblastfm; # Added 2020-06-14 934 - liblrdf = throw "'liblrdf' has been renamed to/replaced by 'lrdf'"; # Converted to throw 2022-02-22 935 - libmicrohttpd_0_9_70 = throw "'libmicrohttpd_0_9_70' has been removed because it is insecure, and has been replaced by 'libmicrohttpd_0_9_69' and 'libmicrohttpd_0_9_71'"; # Added 2022-10-10 936 libmongo-client = throw "'libmongo-client' has been removed, upstream gone"; # Added 2023-06-22 937 - libmsgpack = throw "'libmsgpack' has been renamed to/replaced by 'msgpack'"; # Converted to throw 2022-02-22 938 - libnih = throw "'libnih' has been removed"; # Converted to throw 2022-05-17 939 - libosmpbf = throw "libosmpbf was removed because it is no longer required by osrm-backend"; 940 - libpng_apng = throw "libpng_apng has been removed, because it is equivalent to libpng"; # Added 2021-03-21 941 libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20 942 - libqmatrixclient = throw "libqmatrixclient was renamed to libquotient"; # Added 2020-04-09 943 - libqrencode = throw "'libqrencode' has been renamed to/replaced by 'qrencode'"; # Converted to throw 2022-02-22 944 libraw_unstable = throw "'libraw_unstable' has been removed, please use libraw"; # Added 2023-01-30 945 librdf = lrdf; # Added 2020-03-22 946 - librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 947 - libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 948 libressl_3_5 = throw "'libressl_3_5' has reached end-of-life "; # Added 2023-05-07 949 - librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23 950 - librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 951 librtlsdr = rtl-sdr; # Added 2023-02-18 952 librewolf-wayland = librewolf; # Added 2022-11-15 953 libseat = seatd; # Added 2021-06-24 954 - libsForQt512 = throw "Qt 5 versions prior to 5.15 are no longer supported upstream and have been removed"; # Added 2022-11-24 955 - libsForQt514 = throw "Qt 5 versions prior to 5.15 are no longer supported upstream and have been removed"; # Added 2022-11-24 956 libsForQt515 = libsForQt5; # Added 2022-11-24 957 - libspotify = throw "libspotify has been removed because Spotify stopped supporting it"; # added 2022-05-29 958 - libstdcxxHook = throw "libstdcxx hook has been removed because cc-wrapper is now directly aware of the c++ standard library intended to be used"; # Added 2020-06-22 959 - libsysfs = throw "'libsysfs' has been renamed to/replaced by 'sysfsutils'"; # Converted to throw 2022-02-22 960 libtensorflow-bin = libtensorflow; # Added 2022-09-25 961 - libtidy = throw "'libtidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22 962 libtorrentRasterbar = libtorrent-rasterbar; # Added 2020-12-20 963 libtorrentRasterbar-1_2_x = libtorrent-rasterbar-1_2_x; # Added 2020-12-20 964 libtorrentRasterbar-2_0_x = libtorrent-rasterbar-2_0_x; # Added 2020-12-20 965 - libtxc_dxtn = throw "libtxc_dxtn was removed 2020-03-16, now integrated in Mesa"; 966 - libtxc_dxtn_s2tc = throw "libtxc_dxtn_s2tc was removed 2020-03-16, now integrated in Mesa"; 967 - libudev = throw "'libudev' has been renamed to/replaced by 'udev'"; # Converted to throw 2022-02-22 968 libungif = giflib; # Added 2020-02-12 969 libusb = libusb1; # Added 2020-04-28 970 - libusb1-axoloti = throw "libusb1-axoloti has been removed: axoloti has been removed"; # Added 2022-05-13 971 - libva-full = throw "'libva-full' has been renamed to/replaced by 'libva'"; # Converted to throw 2022-02-22 972 - libva1-full = throw "'libva1-full' has been renamed to/replaced by 'libva1'"; # Converted to throw 2022-02-22 973 libwnck3 = libwnck; 974 libyamlcpp = yaml-cpp; # Added 2023-01-29 975 libyamlcpp_0_3 = yaml-cpp_0_3; # Added 2023-01-29 976 lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01 977 - lighttable = throw "'lighttable' crashes (SIGSEGV) on startup, has not been updated in years and depends on deprecated GTK2"; # Added 2022-06-15 978 - lilyterm = throw "lilyterm has been removed from nixpkgs, because it was relying on a vte version that depended on python2"; # Added 2022-01-14 979 - lilyterm-git = throw "lilyterm-git has been removed from nixpkgs, because it was relying on a vte version that depended on python2"; # Added 2022-01-14 980 - links = throw "'links' has been renamed to/replaced by 'links2'"; # Converted to throw 2022-02-22 981 - linuxband = throw "linuxband has been removed from nixpkgs, as it's abandoned upstream"; # Added 2021-12-09 982 llama = walk; # Added 2023-01-23 983 984 # Linux kernels ··· 1025 linux_6_3 = linuxKernel.kernels.linux_6_3; 1026 linux_6_4 = linuxKernel.kernels.linux_6_4; 1027 linux_6_5 = linuxKernel.kernels.linux_6_5; 1028 - linuxPackages_mptcp = throw "'linuxPackages_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 1029 - linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 1030 - linux_mptcp_95 = throw "'linux_mptcp_95' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 1031 linux_rpi0 = linuxKernel.kernels.linux_rpi1; 1032 linux_rpi02w = linuxKernel.kernels.linux_rpi3; 1033 linux_rpi1 = linuxKernel.kernels.linux_rpi1; 1034 linux_rpi2 = linuxKernel.kernels.linux_rpi2; 1035 linux_rpi3 = linuxKernel.kernels.linux_rpi3; 1036 linux_rpi4 = linuxKernel.kernels.linux_rpi4; 1037 - linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; # Added 2022-11-01 1038 - linuxPackages_xanmod_tt = throw "linuxPackages_xanmod_tt was removed because upstream no longer offers this option"; # Added 2022-11-01 1039 - 1040 - # Added 2020-04-04 1041 - linuxPackages_testing_hardened = throw "linuxPackages_testing_hardened has been removed, please use linuxPackages_latest_hardened"; 1042 - linux_testing_hardened = throw "linux_testing_hardened has been removed, please use linux_latest_hardened"; 1043 1044 # Added 2021-04-04 1045 linuxPackages_xen_dom0 = linuxPackages; ··· 1061 ''; 1062 linux_latest_hardened = linuxPackages_latest_hardened; 1063 1064 - linux-steam-integration = throw "linux-steam-integration has been removed, as the upstream project has been abandoned"; # Added 2020-05-22 1065 1066 - loadcaffe = throw "loadcaffe has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 1067 lobster-two = google-fonts; # Added 2021-07-22 1068 - logstash6 = throw "logstash6 has been removed because it reached end of life"; # Added 2022-10-04 1069 - logstash6-oss = throw "logstash6 has been removed because it reached end of life"; # Added 2022-10-04 1070 - love_0_7 = throw "love_0_7 was removed because it is a very old version and no longer used by any package in nixpkgs"; # Added 2022-01-15 1071 - love_0_8 = throw "love_0_8 was removed because it is a very old version and no longer used by any package in nixpkgs"; # Added 2022-01-15 1072 - love_0_9 = throw "love_0_9 was removed because was broken for a long time and no longer used by any package in nixpkgs"; # Added 2022-01-15 1073 - lprof = throw "lprof has been removed as it's unmaintained upstream and broken in nixpkgs since a while ago"; # Added 2021-02-15 1074 - lttngTools = throw "'lttngTools' has been renamed to/replaced by 'lttng-tools'"; # Converted to throw 2022-02-22 1075 - lttngUst = throw "'lttngUst' has been renamed to/replaced by 'lttng-ust'"; # Converted to throw 2022-02-22 1076 - lua5_1_sockets = throw "'lua5_1_sockets' has been renamed to/replaced by 'lua51Packages.luasocket'"; # Converted to throw 2022-02-22 1077 - lua5_expat = throw "'lua5_expat' has been renamed to/replaced by 'luaPackages.luaexpat'"; # Converted to throw 2022-02-22 1078 - lua5_sec = throw "'lua5_sec' has been renamed to/replaced by 'luaPackages.luasec'"; # Converted to throw 2022-02-22 1079 - lumo = throw "lumo has been removed: abandoned by upstream"; # Added 2022-04-25 1080 - lumpy = throw "lumpy has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12 1081 luxcorerender = throw "'luxcorerender' has been removed as it's unmaintained and broken in nixpkgs since a while ago"; # Added 2023-06-07 1082 - lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # Added 2020-06-03 1083 lzma = xz; # moved from top-level 2021-03-14 1084 1085 ### M ### 1086 1087 - m3d-linux = throw "'m3d-linux' has been renamed to/replaced by 'm33-linux'"; # Converted to throw 2022-02-22 1088 MACS2 = macs2; # Added 2023-06-12 1089 - mail-notification = throw "mail-notification has been removed from nixpkgs, as it's unmaintained and has dependencies on old gnome libraries we want to remove"; # Added 2021-08-21 1090 - mailpile = throw "mailpile was removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-12 1091 - man_db = throw "'man_db' has been renamed to/replaced by 'man-db'"; # Converted to throw 2022-02-22 1092 - manul = throw "manul has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-01 1093 - manpages = throw "'manpages' has been renamed to/replaced by 'man-pages'"; # Converted to throw 2022-02-22 1094 - marathon = throw "marathon has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 1095 mariadb_104 = throw "mariadb_104 has been removed from nixpkgs, please switch to another version like mariadb_106"; # Added 2023-09-11 1096 - mariadb_108 = throw "mariadb_108 has been removed from nixpkgs, please switch to another version like mariadb_1010"; # Added 2022-05-10 1097 - mariadb_109 = throw "mariadb_109 has been removed from nixpkgs, please switch to another version like mariadb_1010"; # Added 2022-05-10 1098 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 1099 markdown-pp = throw "markdown-pp was removed from nixpkgs, because the upstream archived it on 2021-09-02"; # Added 2023-07-22 1100 markmind = throw "markmind has been removed from nixpkgs, because it depended on an old version of electron"; # Added 2023-09-12 1101 - marp = throw "marp has been removed from nixpkgs, as it's unmaintained and has security issues"; # Added 2022-06-04 1102 - matcha = throw "matcha was renamed to matcha-gtk-theme"; # added 2020-05-09 1103 - mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 1104 matrique = spectral; # Added 2020-01-27 1105 matrix-recorder = throw "matrix-recorder has been removed due to being unmaintained"; # Added 2023-05-21 1106 maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17 1107 - mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # Added 2020-05-23 1108 mcomix3 = mcomix; # Added 2022-06-05 1109 - mediatomb = throw "mediatomb is no longer maintained upstream, use gerbera instead"; # added 2022-01-04 1110 meme = meme-image-generator; # Added 2021-04-21 1111 - memtest86 = throw "'memtest86' has been renamed to/replaced by 'memtest86plus'"; # Converted to throw 2022-02-22 1112 - mercurial_4 = throw "mercurial_4 has been removed as it's unmaintained"; # Added 2021-10-18 1113 - mesos = throw "mesos has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 1114 mess = throw "'mess' has been renamed to/replaced by 'mame'"; # Converted to throw 2023-09-10 1115 - metal = throw "metal has been removed due to lack of maintainers"; 1116 - metricbeat6 = throw "metricbeat6 has been removed because it reached end of life"; # Added 2022-10-04 1117 microsoft_gsl = microsoft-gsl; # Added 2023-05-26 1118 - mididings = throw "mididings has been removed from nixpkgs as it doesn't support recent python3 versions and its upstream stopped maintaining it"; # Added 2022-01-12 1119 - midoriWrapper = throw "'midoriWrapper' has been renamed to/replaced by 'midori'"; # Converted to throw 2022-02-22 1120 mime-types = mailcap; # Added 2022-01-21 1121 - mimms = throw "mimms has been removed from nixpkgs as the upstream project is stuck on python2"; # Added 2022-01-01 1122 - minergate-cli = throw "minergatecli has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # Added 2021-08-13 1123 - minergate = throw "minergate has been removed from nixpkgs, because the package is unmaintained and the site has a bad reputation"; # Added 2021-08-13 1124 - minetestclient_4 = throw "minetestclient_4 has been removed from Nixpkgs; current version is available at minetest or minetestclient"; # added 2022-02-01 1125 - minetestserver_4 = throw "minetestserver_4 has been removed from Nixpkgs; current version is available at minetestserver"; # added 2022-02-01 1126 - minetime = throw "minetime has been removed from nixpkgs, because it was discontinued 2021-06-22"; # Added 2021-10-14 1127 - miniupnpc_1 = throw "miniupnpc_1 has been removed; current version is available at miniupnpc"; # Added 2022-10-30 1128 minizip2 = pkgs.minizip-ng; # Added 2022-12-28 1129 - mist = throw "mist has been removed as the upstream project has been abandoned, see https://github.com/ethereum/mist#mist-browser-deprecated"; # Added 2020-08-15 1130 - mlt-qt5 = throw "'mlt-qt5' has been renamed to/replaced by 'libsForQt5.mlt'"; # Converted to throw 2022-02-22 1131 - mobile_broadband_provider_info = throw "'mobile_broadband_provider_info' has been renamed to/replaced by 'mobile-broadband-provider-info'"; # Converted to throw 2022-02-22 1132 - moby = throw "moby has been removed, merged into linuxkit in 2018. Use linuxkit instead"; 1133 - module_init_tools = throw "'module_init_tools' has been renamed to/replaced by 'kmod'"; # Converted to throw 2022-02-22 1134 monero = monero-cli; # Added 2021-11-28 1135 - moku = throw "moku: Unusable since 2.6.2, not maintained upstream anymore"; # Added 2022-02-26 1136 - mongodb-3_4 = throw "mongodb-3_4 has been removed, it's end of life since January 2020"; # Added 2022-11-30 1137 - mongodb-3_6 = throw "mongodb-3_6 has been removed, it's end of life since April 2021"; # Added 2022-11-30 1138 mongodb-4_0 = throw "mongodb-4_0 has been removed, it's end of life since April 2022"; # Added 2023-01-05 1139 mongodb-4_2 = throw "mongodb-4_2 has been removed, it's end of life since April 2023"; # Added 2023-06-06 1140 - monodevelop = throw "monodevelop has been removed from nixpkgs"; # Added 2022-01-15 1141 - mopidy-gmusic = throw "mopidy-gmusic has been removed because Google Play Music was discontinued"; # Added 2021-03-07 1142 - mopidy-local-images = throw "mopidy-local-images has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension"; # Added 2020-10-18 1143 - mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. Its functionality has been merged into the mopidy-local extension"; # Added 2020-10-18 1144 - mopidy-spotify-tunigo = throw "mopidy-spotify-tunigo has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29 1145 1146 - morituri = throw "'morituri' has been renamed to/replaced by 'whipper'"; # Converted to throw 2022-02-22 1147 moz-phab = mozphab; # Added 2022-08-09 1148 mozart-binary = throw "'mozart-binary' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10 1149 mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10 1150 mpc_cli = mpc-cli; # moved from top-level 2022-01-24 1151 mpd_clientlib = libmpdclient; # Added 2021-02-11 1152 - mpich2 = throw "'mpich2' has been renamed to/replaced by 'mpich'"; # Converted to throw 2022-02-22 1153 - mps-youtube = throw "'mps-youtube' has been removed as it's unmaintained and stopped working. Use 'yewtube', a maintained fork"; # Added 2022-12-29 1154 - mqtt-bench = throw "mqtt-bench has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 1155 - msf = throw "'msf' has been renamed to/replaced by 'metasploit'"; # Converted to throw 2022-02-22 1156 - multimc = throw "multimc was removed from nixpkgs; use prismlauncher instead (see https://github.com/NixOS/nixpkgs/pull/154051 for more information)"; # Added 2022-01-08 1157 mumble_git = throw "'mumble_git' has been renamed to/replaced by 'pkgs.mumble'"; # Converted to throw 2023-09-10 1158 murmur_git = throw "'murmur_git' has been renamed to/replaced by 'pkgs.murmur'"; # Converted to throw 2023-09-10 1159 mutt-with-sidebar = mutt; # Added 2022-09-17 1160 mysql-client = hiPrio mariadb.client; 1161 mysql = mariadb; # moved from top-level 2021-03-14 1162 - mysql57 = throw "'mysql57' has been removed. Please use 'mysql80' or 'mariadb'"; 1163 1164 # floating point textures patents are expired, 1165 # so package reduced to alias 1166 mesa_drivers = mesa.drivers; 1167 - mesa_noglu = throw "'mesa_noglu' has been renamed to/replaced by 'mesa'"; # Converted to throw 2022-02-22 1168 - 1169 - mpv-with-scripts = throw "'mpv-with-scripts' has been renamed to/replaced by 'mpv' or with 'mpv.override { scripts = [ mpvScripts.plugin-name ]; }' if you where using plugins."; # Converted to throw 2022-09-24 1170 - mssys = throw "'mssys' has been renamed to/replaced by 'ms-sys'"; # Converted to throw 2022-02-22 1171 - multipath_tools = throw "'multipath_tools' has been renamed to/replaced by 'multipath-tools'"; # Converted to throw 2022-02-22 1172 - mumsi = throw "mumsi has been removed from nixpkgs, as it's unmaintained and does not build anymore"; # Added 2021-11-18 1173 - mupen64plus1_5 = throw "'mupen64plus1_5' has been renamed to/replaced by 'mupen64plus'"; # Converted to throw 2022-02-22 1174 - mx = throw "graalvm8 and its tools were deprecated in favor of graalvm8-ce"; # Added 2021-10-15 1175 - mxisd = throw "mxisd has been removed from nixpkgs as it has reached end of life, see https://github.com/kamax-matrix/mxisd/blob/535e0a5b96ab63cb0ddef90f6f42c5866407df95/EOL.md#end-of-life-notice . ma1sd may be a suitable alternative"; # Added 2021-04-15 1176 - mysqlWorkbench = throw "'mysqlWorkbench' has been renamed to/replaced by 'mysql-workbench'"; # Converted to throw 2022-02-22 1177 - myxer = throw "Myxer has been removed from nixpkgs, as it has been unmaintained since Jul 31, 2021"; # Added 2022-06-08 1178 1179 ### N ### 1180 1181 - namecoin = throw "namecoin GUI has been removed, because it depended on qt4"; # Added 2022-05-26 1182 - navipowm = throw "navipowm has been removed, because it was unmaintained upstream"; # Added 2022-05-26 1183 ncdu_2 = ncdu; # Added 2022-07-22 1184 - nccl = throw "nccl has been renamed to cudaPackages.nccl"; # Added 2022-04-04 1185 - nccl_cudatoolkit_10 = throw "nccl_cudatoolkit_10 has been renamed to cudaPackages_10.nccl"; # Added 2022-04-04 1186 - nccl_cudatoolkit_11 = throw "nccl_cudatoolkit_11 has been renamed to cudaPackages_11.nccl"; # Added 2022-04-04 1187 1188 net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2023-09-10 1189 netbox_3_3 = throw "netbox 3.3 series has been removed as it was EOL"; # Added 2023-09-02 1190 nagiosPluginsOfficial = monitoring-plugins; 1191 - navit = throw "navit has been removed from nixpkgs, due to being unmaintained"; # Added 2021-06-07 1192 - ncat = throw "'ncat' has been renamed to/replaced by 'nmap'"; # Converted to throw 2022-02-22 1193 - neap = throw "neap was removed from nixpkgs, as it relies on python2"; # Added 2022-01-12 1194 neochat = libsForQt5.kdeGear.neochat; # added 2022-05-10 1195 - netease-cloud-music = throw "netease-cloud-music has been removed together with deepin"; # Added 2020-08-31 1196 - nettools_mptcp = throw "'nettools_mptcp' has been moved to https://github.com/teto/mptcp-flake"; # Converted to throw 2022-10-04 1197 - networkmanager_fortisslvpn = throw "'networkmanager_fortisslvpn' has been renamed to/replaced by 'networkmanager-fortisslvpn'"; # Converted to throw 2022-02-22 1198 - networkmanager_iodine = throw "'networkmanager_iodine' has been renamed to/replaced by 'networkmanager-iodine'"; # Converted to throw 2022-02-22 1199 - networkmanager_l2tp = throw "'networkmanager_l2tp' has been renamed to/replaced by 'networkmanager-l2tp'"; # Converted to throw 2022-02-22 1200 - networkmanager_openconnect = throw "'networkmanager_openconnect' has been renamed to/replaced by 'networkmanager-openconnect'"; # Converted to throw 2022-02-22 1201 - networkmanager_openvpn = throw "'networkmanager_openvpn' has been renamed to/replaced by 'networkmanager-openvpn'"; # Converted to throw 2022-02-22 1202 - networkmanager_vpnc = throw "'networkmanager_vpnc' has been renamed to/replaced by 'networkmanager-vpnc'"; # Converted to throw 2022-02-22 1203 - neutral-style = throw "neural-style has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 1204 - neuron-notes = throw "'neuron-notes' has been decontinued, migrate to 'emanote' instead."; # Added 2022-12-18 1205 - nfsUtils = throw "'nfsUtils' has been renamed to/replaced by 'nfs-utils'"; # Converted to throw 2022-02-22 1206 - nginxUnstable = throw "'nginxUnstable' has been renamed to/replaced by 'nginxMainline'"; # Converted to throw 2022-02-22 1207 - nilfs_utils = throw "'nilfs_utils' has been renamed to/replaced by 'nilfs-utils'"; # Converted to throw 2022-02-22 1208 nitrokey-udev-rules = libnitrokey; # Added 2023-03-25 1209 nix-direnv-flakes = nix-direnv; 1210 nix-review = throw "'nix-review' has been renamed to/replaced by 'nixpkgs-review'"; # Converted to throw 2023-09-10 ··· 1217 nix_2_6 = nixVersions.nix_2_6; 1218 nixopsUnstable = nixops_unstable; # Added 2022-03-03 1219 nixosTest = testers.nixosTest; # Added 2022-05-05 1220 - nixui = throw "nixui has been removed from nixpkgs, due to the project being unmaintained"; # Added 2022-05-23 1221 nmap-unfree = nmap; # Added 2021-04-06 1222 - nmap-graphical = throw "nmap graphical support has been removed due to its python2 dependency"; # Added 2022-04-26 1223 - nmap_graphical = throw "nmap graphical support has been removed due to its python2 dependency"; # Modified 2022-04-26 1224 - nodejs_10 = throw "nodejs-10_x has been removed. Use a newer version instead."; # Added 2022-05-31 1225 - nodejs-10_x = nodejs_10; # Added 2022-11-06 1226 - nodejs_12 = throw "nodejs-12_x has been removed. Use a newer version instead."; # Added 2022-07-04 1227 - nodejs-12_x = nodejs_12; # Added 2022-11-06 1228 nodejs-14_x = nodejs_14; # Added 2022-11-06 1229 nodejs-slim-14_x = nodejs-slim_14; # Added 2022-11-06 1230 nodejs-16_x = nodejs_16; # Added 2022-11-06 ··· 1232 nodejs-slim-16_x = nodejs-slim_16; # Added 2022-11-06 1233 nodejs-18_x = nodejs_18; # Added 2022-11-06 1234 nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06 1235 - nologin = throw "'nologin' has been renamed to/replaced by 'shadow'"; # Converted to throw 2022-02-22 1236 - nomad_1_1 = throw "nomad_1_1 has been removed because it's outdated. Use a a newer version instead"; # Added 2022-05-22 1237 nomad_1_2 = throw "nomad_1_2 has been removed because it's outdated. Use a a newer version instead"; # Added 2023-09-02 1238 nomad_1_3 = throw "nomad_1_3 has been removed because it's outdated. Use a a newer version instead"; # Added 2023-09-02 1239 - nordic-polar = throw "nordic-polar was removed on 2021-05-27, now integrated in nordic"; # Added 2021-05-27 1240 noto-fonts-cjk = noto-fonts-cjk-sans; # Added 2021-12-16 1241 noto-fonts-emoji = noto-fonts-color-emoji; # Added 2023-09-09 1242 noto-fonts-extra = noto-fonts; # Added 2023-04-08 1243 - nottetris2 = throw "nottetris2 was removed because it is unmaintained by upstream and broken"; # Added 2022-01-15 1244 - now-cli = throw "now-cli has been replaced with nodePackages.vercel"; # Added 2021-08-05 1245 - ntrack = throw "ntrack has been removed, because it depended on qt4"; # Added 2022-05-12 1246 - ntdb = throw "ntdb has been removed: abandoned by upstream"; # Added 2022-04-21 1247 - nxproxy = throw "'nxproxy' has been renamed to/replaced by 'nx-libs'"; # Converted to throw 2022-02-22 1248 1249 ### O ### 1250 1251 o = orbiton; # Added 2023-04-09 1252 oathToolkit = oath-toolkit; # Added 2022-04-04 1253 - oci-image-tool = throw "oci-image-tool is no longer actively maintained, and has had major deficiencies for several years."; # Added 2022-05-14; 1254 - oracleXE = throw "oracleXE has been removed, as it's heavily outdated and unmaintained"; # Added 2020-10-09 1255 - OVMF-CSM = throw "OVMF-CSM has been removed in favor of OVMFFull"; # Added 2021-10-16 1256 - OVMF-secureBoot = throw "OVMF-secureBoot has been removed in favor of OVMFFull"; # Added 2021-10-16 1257 oauth2_proxy = oauth2-proxy; # Added 2021-04-18 1258 - ocropus = throw "ocropus has been removed: abandoned by upstream"; # Added 2022-04-24 1259 - octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set"; # Added 2021-01-24 1260 - ocz-ssd-guru = throw "ocz-ssd-guru has been removed due to there being no source available"; # Added 2021-07-12 1261 octant = throw "octant has been dropped due to being archived and vulnerable"; # Added 2023-09-29 1262 octant-desktop = throw "octant-desktop has been dropped due to being archived and vulnerable"; # Added 2023-09-29 1263 - odpdown = throw "odpdown has been removed because it lacks python3 support"; # Added 2022-04-25 1264 - ofp = throw "ofp is not compatible with odp-dpdk"; 1265 ogre1_9 = throw "ogre1_9 has been removed, use ogre instead"; # Added 2023-03-22 1266 ogre1_10 = throw "ogre1_10 has been removed, use ogre instead"; # Added 2023-07-20 1267 - olifant = throw "olifant has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 1268 - omapd = throw "omapd has been removed from nixpkgs, as it was unmaintained"; # Added 2022-05-09 1269 opa = throw "opa has been removed from nixpkgs as upstream has abandoned the project"; # Added 2023-03-21 1270 opam_1_2 = throw "'opam_1_2' has been renamed to/replaced by 'opam'"; # Added 2023-03-08 1271 openafs_1_8 = openafs; # Added 2022-08-22 1272 - openbazaar = throw "openbazzar has been removed from nixpkgs as upstream has abandoned the project"; # Added 2022-01-06 1273 - openbazaar-client = throw "openbazzar-client has been removed from nixpkgs as upstream has abandoned the project"; # Added 2022-01-06 1274 - opencascade_oce = throw "'opencascade_oce' has been renamed to/replaced by 'opencascade'"; # Converted to throw 2022-02-22 1275 opencascade = throw "'opencascade' has been removed as it is unmaintained; consider opencascade-occt instead'"; # Added 2023-09-18 1276 - opencl-icd = throw "'opencl-icd' has been renamed to/replaced by 'ocl-icd'"; # Converted to throw 2022-02-22 1277 openconnect_head = openconnect_unstable; # Added 2022-03-29 1278 openconnect_gnutls = openconnect; # Added 2022-03-29 1279 - openconnect_pa = throw "openconnect_pa fork has been discontinued, support for GlobalProtect is now available in openconnect"; # Added 2021-05-21 1280 openconnect_unstable = throw "openconnect_unstable was removed from nixpkgs as it was not being updated"; # Added 2023-06-01 1281 openelec-dvb-firmware = libreelec-dvb-firmware; # Added 2021-05-10 1282 - openexr_ctl = throw "'openexr_ctl' has been renamed to/replaced by 'ctl'"; # Converted to throw 2022-02-22 1283 openimagedenoise_1_2_x = throw "'openimagedenoise_1_2_x' has been renamed to/replaced by 'openimagedenoise'"; # Added 2023-06-07 1284 openimageio2 = openimageio; # Added 2023-01-05 1285 openimageio_1 = throw "'openimageio_1' has been removed, please update to 'openimageio' 2"; # Added 2023-06-14 1286 openisns = open-isns; # Added 2020-01-28 1287 - openjpeg_1 = throw "openjpeg_1 has been removed, use openjpeg_2 instead"; # Added 2021-01-24 1288 openjpeg_2 = openjpeg; # Added 2021-01-25 1289 openmpt123 = libopenmpt; # Added 2021-09-05 1290 - opensans-ttf = throw "'opensans-ttf' has been renamed to/replaced by 'open-sans'"; # Converted to throw 2022-02-22 1291 - openssh_with_kerberos = throw "'openssh_with_kerberos' has been renamed to/replaced by 'openssh'"; # Converted to throw 2022-02-22 1292 openssl_3_0 = openssl_3; # Added 2022-06-27 1293 openvpn_24 = throw "openvpn_24 has been removed, because it went EOL. 2.5.x or newer is still available"; # Added 2023-01-23 1294 orchis = orchis-theme; # Added 2021-06-09 1295 osxfuse = macfuse-stubs; # Added 2021-03-20 1296 - otter-browser = throw "otter-browser has been removed from nixpkgs, as it was unmaintained"; # Added 2020-02-02 1297 - owncloudclient = throw "'owncloudclient' has been renamed to/replaced by 'owncloud-client'"; # Converted to throw 2022-02-22 1298 1299 ### P ### 1300 1301 - PPSSPP = throw "'PPSSPP' has been renamed to/replaced by 'ppsspp'"; # Converted to throw 2022-02-22 1302 1303 - p11_kit = throw "'p11_kit' has been renamed to/replaced by 'p11-kit'"; # Converted to throw 2022-02-22 1304 packet-cli = metal-cli; # Added 2021-10-25 1305 palemoon = throw "palemoon has been dropped due to python2 being EOL and marked insecure. Use 'palemoon-bin' instead"; # Added 2023-05-18 1306 paperless = paperless-ngx; # Added 2021-06-06 1307 paperless-ng = paperless-ngx; # Added 2022-04-11 1308 paper-note = throw "paper-note has been removed: abandoned by upstream"; # Added 2023-05-03 1309 parity = openethereum; # Added 2020-08-01 1310 - parity-ui = throw "parity-ui was removed because it was broken and unmaintained by upstream"; # Added 2022-01-10 1311 - parquet-cpp = throw "'parquet-cpp' has been renamed to/replaced by 'arrow-cpp'"; # Converted to throw 2022-02-22 1312 - patchmatrix = throw "'patchmatrix' has been renamed to/replaced by 'open-music-kontrollers.patchmatrix'"; # Added 2022-03-09 1313 pash = throw "'pash' has been removed: abandoned by upstream. Use 'powershell' instead"; # Added 2023-09-16 1314 - pass-otp = throw "'pass-otp' has been renamed to/replaced by 'pass.withExtensions'"; # Converted to throw 2022-02-22 1315 - pbis-open = throw "pbis-open has been removed, because it is no longer maintained upstream"; # added 2021-12-15 1316 - pdf-redact-tools = throw "pdf-redact-tools has been removed from nixpkgs because the upstream has abandoned the project"; # Added 2022-01-01 1317 - pdf2htmlEx = throw "pdf2htmlEx has been removed from nixpkgs, as it was unmaintained"; # Added 2020-11-03 1318 - pdfmod = throw "pdfmod has been removed"; # Added 2022-01-15 1319 - pdfread = throw "pdfread has been remove because it is unmaintained for years and the sources are no longer available"; # Added 2021-07-22 1320 - pdfstudio = throw "'pdfstudio' has been replaced with 'pdfstudio<year>', where '<year>' is the year from the PDF Studio version number, because each license is specific to a given year"; # Added 2022-09-04 1321 peach = asouldocs; # Added 2022-08-28 1322 pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23 1323 - percona-server = percona-server56; # Added 2022-11-01 1324 - percona-server56 = throw "'percona-server56' has been dropped due to lack of maintenance, no upstream support and security issues"; # Added 2022-11-01 1325 - percona-xtrabackup_2_4 = throw "'percona-xtrabackup_2_4' has been renamed to/replaced by 'percona-xtrabackup'"; # Added 2022-12-23 1326 perldevel = throw "'perldevel' has been dropped due to lack of updates in nixpkgs and lack of consistent support for devel versions by 'perl-cross' releases, use 'perl' instead"; 1327 perldevelPackages = perldevel; 1328 - perlXMLParser = throw "'perlXMLParser' has been renamed to/replaced by 'perlPackages.XMLParser'"; # Converted to throw 2022-02-22 1329 - perlArchiveCpio = throw "'perlArchiveCpio' has been renamed to/replaced by 'perlPackages.ArchiveCpio'"; # Converted to throw 2022-02-22 1330 pgadmin = pgadmin4; 1331 - pgadmin3 = throw "pgadmin3 was removed for being unmaintained, use pgadmin4 instead."; # Added 2022-03-30 1332 - pgp-tools = throw "'pgp-tools' has been renamed to/replaced by 'signing-party'"; # Converted to throw 2022-02-22 1333 - pg_tmp = throw "'pg_tmp' has been renamed to/replaced by 'ephemeralpg'"; # Converted to throw 2022-02-22 1334 - phantomjs = throw "phantomjs 1.9.8 has been dropped due to lack of maintenance and security issues"; # Added 2022-02-20 1335 - phantomjs2 = throw "phantomjs2 has been dropped due to lack of maintenance"; # Added 2022-04-22 1336 pharo-spur64 = pharo; # Added 2022-08-03 1337 - pharo-spur32 = throw "pharo on 32bits is currently not supported due to lack of maintenance"; # Added 2022-08-03 1338 - pharo-cog32 = throw "the cog32 VM has been outdated for about a decade now, time to move on"; # Added 2022-08-03 1339 - pharo-launcher = throw "pharo launcher has been dropped due to lack of maintenance"; # Added 2022-08-03 1340 - philter = throw "philter has been removed: abandoned by upstream"; # Added 2022-04-26 1341 phodav_2_0 = throw "'phodav_2_0' has been renamed to/replaced by 'phodav'"; # Added 2023-02-21 1342 photoflow = throw "photoflow was removed because it was broken and unmaintained by upstream"; # Added 2023-03-10 1343 - phraseapp-client = throw "phraseapp-client is archived by upstream. Use phrase-cli instead"; # Added 2022-05-15 1344 - phwmon = throw "phwmon has been removed: abandoned by upstream"; # Added 2022-04-24 1345 1346 # Obsolete PHP version aliases 1347 php80 = throw "php80 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2023-06-21 1348 php80Packages = php80; # Added 2023-06-21 1349 php80Extensions = php80; # Added 2023-06-21 1350 1351 - php74 = throw "php74 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2022-05-24 1352 - php74Packages = php74; # Added 2022-05-24 1353 - php74Extensions = php74; # Added 2022-05-24 1354 - 1355 - php73 = throw "php73 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2021-06-03 1356 - php73Packages = php73; # Added 2021-06-03 1357 - php73Extensions = php73; # Added 2021-06-03 1358 - 1359 - php-embed = throw '' 1360 - php*-embed has been dropped, you can build something similar 1361 - with the following snippet: 1362 - php74.override { embedSupport = true; apxs2Support = false; } 1363 - ''; # Added 2020-04-01 1364 - php73-embed = php-embed; # Added 2020-04-01 1365 - php74-embed = php-embed; # Added 2020-04-01 1366 - 1367 - phpPackages-embed = throw '' 1368 - php*Packages-embed has been dropped, you can build something 1369 - similar with the following snippet: 1370 - (php74.override { embedSupport = true; apxs2Support = false; }).packages 1371 - ''; # Added 2020-04-01 1372 - php73Packages-embed = phpPackages-embed; 1373 - php74Packages-embed = phpPackages-embed; 1374 - 1375 - php-unit = throw '' 1376 - php*-unit has been dropped, you can build something similar with 1377 - the following snippet: 1378 - php74.override { 1379 - embedSupport = true; 1380 - apxs2Support = false; 1381 - systemdSupport = false; 1382 - phpdbgSupport = false; 1383 - cgiSupport = false; 1384 - fpmSupport = false; 1385 - } 1386 - ''; # Added 2020-04-01 1387 - php73-unit = php-unit; # Added 2020-04-01 1388 - php74-unit = php-unit; # Added 2020-04-01 1389 - 1390 - phpPackages-unit = throw '' 1391 - php*Packages-unit has been dropped, you can build something 1392 - similar with this following snippet: 1393 - (php74.override { 1394 - embedSupport = true; 1395 - apxs2Support = false; 1396 - systemdSupport = false; 1397 - phpdbgSupport = false; 1398 - cgiSupport = false; 1399 - fpmSupport = false; 1400 - }).packages 1401 - ''; # Added 2020-04-01 1402 - php73Packages-unit = phpPackages-unit; 1403 - php74Packages-unit = phpPackages-unit; 1404 - 1405 - pidgin-with-plugins = throw "'pidgin-with-plugins' has been renamed to/replaced by 'pidgin'"; # Converted to throw 2022-02-22 1406 - pidginlatex = throw "'pidginlatex' has been renamed to/replaced by 'pidgin-latex'"; # Converted to throw 2022-02-22 1407 - pidginlatexSF = throw "'pidginlatexSF' has been renamed to/replaced by 'pidgin-latex'"; # Converted to throw 2022-02-22 1408 - pidginmsnpecan = throw "'pidginmsnpecan' has been renamed to/replaced by 'pidgin-msn-pecan'"; # Converted to throw 2022-02-22 1409 - pidginosd = throw "'pidginosd' has been renamed to/replaced by 'pidgin-osd'"; # Converted to throw 2022-02-22 1410 - pidginotr = throw "'pidginotr' has been renamed to/replaced by 'pidgin-otr'"; # Converted to throw 2022-02-22 1411 - pidginsipe = throw "'pidginsipe' has been renamed to/replaced by 'pidgin-sipe'"; # Converted to throw 2022-02-22 1412 - pidginwindowmerge = throw "'pidginwindowmerge' has been renamed to/replaced by 'pidgin-window-merge'"; # Converted to throw 2022-02-22 1413 - pifi = throw "pifi has been removed from nixpkgs, as it is no longer developed"; # Added 2022-01-19 1414 - ping = throw "'ping' does not build with recent valac and has been removed. If you are just looking for the 'ping' command use either 'iputils' or 'inetutils'"; # Added 2022-04-18 1415 pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead."; 1416 - piwik = throw "'piwik' has been renamed to/replaced by 'matomo'"; # Converted to throw 2022-02-22 1417 - pixie = throw "pixie has been removed: abandoned by upstream"; # Added 2022-04-21 1418 pkgconfig = throw "'pkgconfig' has been renamed to/replaced by 'pkg-config'"; # Converted to throw 2023-09-10 1419 - pkgconfigUpstream = throw "'pkgconfigUpstream' has been renamed to/replaced by 'pkg-configUpstream'"; # Converted to throw 2022-02-22 1420 pleroma-otp = pleroma; # Added 2021-07-10 1421 - plexpy = throw "'plexpy' has been renamed to/replaced by 'tautulli'"; # Converted to throw 2022-02-22 1422 pltScheme = racket; # just to be sure 1423 pmdk = throw "'pmdk' is discontinued, no further support or maintenance is planned by upstream"; # Added 2023-02-06 1424 - pmtools = throw "'pmtools' has been renamed to/replaced by 'acpica-tools'"; # Converted to throw 2022-02-22 1425 - pocketsphinx = throw "pocketsphinx has been removed: unmaintained"; # Added 2022-04-24 1426 - polarssl = throw "'polarssl' has been renamed to/replaced by 'mbedtls'"; # Converted to throw 2022-02-22 1427 - polymc = throw "PolyMC has been removed from nixpkgs due to a hostile takeover by a rogue maintainer. The rest of the maintainers have made a fork which is packaged as 'prismlauncher'"; # Added 2022-10-18 1428 - polysh = throw "polysh has been removed from nixpkgs as the upstream has abandoned the project"; # Added 2022-01-01 1429 pomotroid = throw "pomotroid has been removed from nixpkgs, because it depended on an insecure version of electron"; # Added 2023-09-12 1430 - pond = throw "pond has been dropped due to the lack of maintenance from upstream since 2016"; # Added 2022-06-02 1431 - poppler_qt5 = throw "'poppler_qt5' has been renamed to/replaced by 'libsForQt5.poppler'"; # Converted to throw 2022-02-22 1432 powerdns = pdns; # Added 2022-03-28 1433 - portaudio2014 = throw "'portaudio2014' has been removed"; # Added 2022-05-10 1434 - 1435 - # postgresql 1436 - postgresql96 = postgresql_9_6; 1437 - postgresql_9_6 = throw "postgresql_9_6 has been removed from nixpkgs, as this version is no longer supported by upstream"; # Added 2021-12-03 1438 - postgresql_10 = throw "postgresql_10 has been removed from nixpkgs, as this version went EOL on 2022-11-10"; # Added 2022-08-01 1439 1440 # postgresql plugins 1441 cstore_fdw = postgresqlPackages.cstore_fdw; ··· 1449 pgtap = postgresqlPackages.pgtap; 1450 plv8 = postgresqlPackages.plv8; 1451 postgis = postgresqlPackages.postgis; 1452 - tilp2 = throw "tilp2 has been removed"; # Added 2022-01-15 1453 - timekeeper = throw "timekeeper has been removed"; # Added 2022-01-16 1454 timescaledb = postgresqlPackages.timescaledb; 1455 - tlauncher = throw "tlauncher has been removed because there questionable practices and legality concerns"; 1456 tsearch_extras = postgresqlPackages.tsearch_extras; 1457 1458 pinentry_curses = throw "'pinentry_curses' has been renamed to/replaced by 'pinentry-curses'"; # Converted to throw 2023-09-10 ··· 1461 pinentry_gtk2 = throw "'pinentry_gtk2' has been renamed to/replaced by 'pinentry-gtk2'"; # Converted to throw 2023-09-10 1462 pinentry_qt = throw "'pinentry_qt' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2023-09-10 1463 pinentry_qt5 = pinentry-qt; # Added 2020-02-11 1464 - prboom = throw "prboom was removed because it was abandoned by upstream, use prboom-plus instead"; # Added 2022-04-24 1465 - privateer = throw "privateer was removed because it was broken"; # Added 2021-05-18 1466 probe-rs-cli = throw "probe-rs-cli is now part of the probe-rs package"; # Added 2023-07-03 1467 processing3 = throw "'processing3' has been renamed to/replaced by 'processing'"; # Converted to throw 2023-09-10 1468 - procps-ng = throw "'procps-ng' has been renamed to/replaced by 'procps'"; # Converted to throw 2022-02-22 1469 - proglodyte-wasm = throw "proglodyte-wasm has been removed from nixpkgs, because it is unmaintained since 5 years with zero github stars"; # Added 2021-06-30 1470 - proj_5 = throw "Proj-5 has been removed from nixpkgs, use proj instead"; # Added 2021-04-12 1471 - prometheus-cups-exporter = throw "outdated and broken by design; removed by developer"; # Added 2021-03-16 1472 prometheus-dmarc-exporter = dmarc-metrics-exporter; # added 2022-05-31 1473 - prometheus-mesos-exporter = throw "prometheus-mesos-exporter is deprecated and archived by upstream"; # Added 2022-04-05 1474 - prometheus-unifi-exporter = throw "prometheus-unifi-exporter is deprecated and archived by upstream, use unifi-poller instead"; # Added 2022-06-03 1475 prometheus-speedtest-exporter = throw "prometheus-speedtest-exporter was removed as unmaintained"; # Added 2023-07-31 1476 - protobuf3_7 = throw "protobuf3_7 does not receive updates anymore and has been removed"; # Added 2022-10-03 1477 - protobuf3_11 = throw "protobuf3_11 does not receive updates anymore and has been removed"; # Added 2022-09-28 1478 protobuf3_17 = throw "protobuf3_17 does not receive updates anymore and has been removed"; # Added 2023-05-21 1479 protobuf3_19 = throw "protobuf3_19 does not receive updates anymore and has been removed"; # Added 2023-10-01 1480 protonup = protonup-ng; # Added 2022-11-06 1481 proxmark3-rrg = proxmark3; # Added 2023-07-25 1482 proxmark3-unstable = throw "removed in favor of rfidresearchgroup fork"; # Added 2023-07-25 1483 - proxytunnel = throw "proxytunnel has been removed from nixpkgs, because it has not been update upstream since it was added to nixpkgs in 2008 and has therefore bitrotted."; # added 2021-12-15 1484 - pulseaudio-hsphfpd = throw "pulseaudio-hsphfpd upstream has been abandoned"; # Added 2022-03-23 1485 - pulseaudio-modules-bt = throw "pulseaudio-modules-bt has been abandoned, and is superseded by pulseaudio's native bt functionality"; # Added 2022-04-01 1486 - pulseaudioLight = throw "'pulseaudioLight' has been renamed to/replaced by 'pulseaudio'"; # Converted to throw 2022-02-22 1487 - pulseeffects = throw "Use pulseeffects-legacy if you use PulseAudio and easyeffects if you use PipeWire"; # Added 2021-02-13 1488 - pulseeffects-pw = easyeffects; # Added 2021-07-07 1489 pyls-black = throw "pyls-black has been removed from nixpkgs. Use python-lsp-black instead."; # Added 2023-01-09 1490 pyls-mypy = throw "pyls-mypy has been removed from nixpkgs. Use pylsp-mypy instead."; # Added 2023-01-09 1491 - py-wmi-client = throw "py-wmi-client has been removed: abandoned by upstream"; # Added 2022-04-26 1492 - pydb = throw "pydb has been removed: abandoned by upstream"; # Added 2022-04-22 1493 - pyIRCt = throw "pyIRCt has been removed from nixpkgs as it is unmaintained and python2-only"; 1494 - pyMAILt = throw "pyMAILt has been removed from nixpkgs as it is unmaintained and python2-only"; 1495 - pybind11 = throw "pybind11 was removed because pythonPackages.pybind11 for the appropriate version of Python should be used"; # Added 2021-05-14 1496 - pybitmessage = throw "pybitmessage was removed from nixpkgs as it is stuck on python2"; # Added 2022-01-01 1497 - pyext = throw "pyext was removed because it does not support python 3.11, is upstream unmaintained and was unused"; # Added 2022-11-21 1498 pygmentex = throw "'pygmentex' has been renamed to/replaced by 'texlive.bin.pygmentex'"; # Converted to throw 2023-09-10 1499 - pyload = throw "pyload has been removed from nixpkgs. Use pyload-ng instead."; # Added 2021-03-21 1500 - pynagsystemd = throw "pynagsystemd was removed as it was unmaintained and incompatible with recent systemd versions. Instead use its fork check_systemd"; # Added 2020-10-24 1501 pyo3-pack = maturin; 1502 pypi2nix = throw "pypi2nix has been removed due to being unmaintained"; 1503 pypolicyd-spf = spf-engine; # Added 2022-10-09 1504 - pyrex = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 1505 - pyrex095 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 1506 - pyrex096 = throw "pyrex has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-12 1507 - pyrit = throw "pyrit has been removed from nixpkgs as the project is still stuck on python2"; # Added 2022-01-01 1508 python = python2; # Added 2022-01-11 1509 python-language-server = throw "python-language-server has been removed as it is no longer maintained. Use e.g. python-lsp-server instead"; # Added 2023-01-07 1510 python-swiftclient = swiftclient; # Added 2021-09-09 1511 - python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead"; # Added 2021-03-08 1512 pythonFull = python2Full; # Added 2022-01-11 1513 pythonPackages = python.pkgs; # Added 2022-01-11 1514 1515 ### Q ### 1516 1517 - QmidiNet = throw "'QmidiNet' has been renamed to/replaced by 'qmidinet'"; # Converted to throw 2022-02-22 1518 - qca-qt5 = throw "'qca-qt5' has been renamed to/replaced by 'libsForQt5.qca-qt5'"; # Converted to throw 2022-02-22 1519 - qca2 = throw "qca2 has been removed, because it depended on qt4"; # Added 2022-05-26 1520 qcsxcad = libsForQt5.qcsxcad; # Added 2020-11-05 1521 qtcreator-qt6 = throw "'qtcreator-qt6' has been renamed to/replaced by 'qtcreator', since qt5 version has been removed"; # Added 2023-07-25 1522 qflipper = qFlipper; # Added 2022-02-11 1523 - qfsm = throw "qfsm has been removed, because it depended on qt4"; # Added 2022-06-12 1524 - qimageblitz = throw "qimageblitz has been removed from nixpkgs, because it depended on qt4 and was last updated upstream in 2007"; # Added 2022-06-12 1525 - qmetro = throw "qmetro has been removed, because it does not support qt5 (well)"; # Added 2022-05-26 1526 - qmidiroute = throw "qmidiroute has been removed, because it was unmaintained upstream"; # Added 2022-05-26 1527 - qmk_firmware = throw "qmk_firmware has been removed because it was broken"; # Added 2021-04-02 1528 qlandkartegt = throw "'qlandkartegt' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-04-17 1529 - qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # Added 2020-12-02 1530 - qshowdiff = throw "'qshowdiff' (Qt4) is unmaintained and not been updated since its addition in 2010"; # Added 2022-06-14 1531 qscintilla = libsForQt5.qscintilla; # Added 2023-09-20 1532 qscintilla-qt6 = qt6Packages.qscintilla; # Added 2023-09-20 1533 - qtscrobbler = throw "qtscrobbler has been removed, because it was unmaintained"; # Added 2022-05-26 1534 - qt-3 = throw "qt-3 has been removed from nixpkgs, as it's unmaintained and insecure"; # Added 2021-02-15 1535 - qt512 = throw "Qt 5 versions prior to 5.15 are no longer supported upstream and have been removed"; # Added 2022-11-24 1536 - qt514 = throw "Qt 5 versions prior to 5.15 are no longer supported upstream and have been removed"; # Added 2022-11-24 1537 qt515 = qt5; # Added 2022-11-24 1538 - qt4 = throw "qt4 has been removed from nixpkgs, because it's been EOL since the end of 2015"; # Added 2022-05-09 1539 qt5ct = libsForQt5.qt5ct; # Added 2021-12-27 1540 qt6ct = qt6Packages.qt6ct; # Added 2023-03-07 1541 qtcurve = libsForQt5.qtcurve; # Added 2020-11-07 1542 qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12 1543 - qtkeychain = throw "the qtkeychain attribute (qt4 version) has been removes, use the qt5 version: libsForQt5.qtkeychain"; # Added 2021-08-04 1544 - qt-mobility = throw "qt-mobility has been removed, because it depended on qt4"; # Added 2022-06-13 1545 - qtscriptgenerator = throw "'qtscriptgenerator' (Qt4) is unmaintained upstream and not used in nixpkgs"; # Added 2022-06-14 1546 - qtstyleplugin-kvantum-qt4 = throw "qtstyleplugin-kvantum-qt4 has been removed, because it depended on qt4"; # Added 2022-05-26 1547 - quagga = throw "quagga is no longer maintained upstream"; # Added 2021-04-22 1548 - quake3game = throw "'quake3game' has been renamed to/replaced by 'ioquake3'"; # Converted to throw 2022-02-22 1549 - quaternion-git = throw "quaternion-git has been removed in favor of the stable version 'quaternion'"; # Added 2020-04-09 1550 - qucs = throw "qucs has been removed, because it depended on qt4. try using qucs-s"; # Added 2022-05-12 1551 - quilter = throw "quilter has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-03 1552 qutebrowser-qt6 = throw "'qutebrowser-qt6' has been replaced by 'qutebrowser', since the the qt5 version has been removed"; # Added 2023-08-19 1553 - qvim = throw "qvim has been removed"; # Added 2020-08-31 1554 - qweechat = throw "qweechat has been removed because it was broken"; # Added 2021-03-08 1555 - qwt6 = throw "'qwt6' has been renamed to/replaced by 'libsForQt5.qwt'"; # Converted to throw 2022-02-22 1556 1557 ### R ### 1558 1559 radare2-cutter = cutter; # Added 2021-03-30 1560 - railcar = throw "'railcar' has been removed, as the upstream project has been abandoned"; # Added 2022-06-27 1561 rambox-pro = rambox; # Added 2022-12-12 1562 rarian = throw "rarian has been removed as unused"; # Added 2023-07-05 1563 - raspberrypi-tools = throw "raspberrypi-tools has been removed in favor of identical 'libraspberrypi'"; # Added 2020-12-24 1564 - rawdog = throw "rawdog has been removed from nixpkgs as it still requires python2"; # Added 2022-01-01 1565 - rdiff_backup = throw "'rdiff_backup' has been renamed to/replaced by 'rdiff-backup'"; # Converted to throw 2022-02-22 1566 - rdmd = throw "'rdmd' has been renamed to/replaced by 'dtools'"; # Converted to throw 2022-02-22 1567 - readline5 = throw "readline-5 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2022-02-20 1568 - readline62 = throw "readline-6.2 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2022-02-20 1569 - readline80 = throw "readline-8.0 is no longer supported in nixpkgs, please use 'readline' for main supported version"; # Added 2021-04-22 1570 - redkite = throw "redkite was archived by upstream"; # Added 2021-04-12 1571 - redis-desktop-manager = throw "'redis-desktop-manager' has been renamed to/replaced by 'resp-app'"; # Added 2022-11-10 1572 - redshift-wlr = throw "redshift-wlr has been replaced by gammastep"; # Added 2021-12-25 1573 - resim = throw "resim has been removed, because it depended on qt4"; # Added 2022-05-26 1574 - reicast = throw "reicast has been removed from nixpkgs as it is unmaintained, please use flycast instead"; # Added 2022-03-07 1575 - residualvm = throw "residualvm was merged to scummvm code in 2018-06-15; consider using scummvm"; # Added 2021-11-27 1576 - retroArchCores = throw "retroArchCores has been removed. Please use overrides instead, e.g.: `retroarch.override { cores = with libretro; [ ... ]; }`"; # Added 2021-11-19 1577 retroshare06 = retroshare; 1578 - rfkill = throw "rfkill has been removed, as it's included in util-linux"; # Added 2020-08-23 1579 - riak = throw "riak has been removed due to lack of maintainer to update the package"; # Added 2022-06-22 1580 - riak-cs = throw "riak-cs is not maintained anymore"; # Added 2020-10-14 1581 rigsofrods = rigsofrods-bin; # Added 2023-03-22 1582 - rimshot = throw "rimshot has been removed, because it is broken and no longer maintained upstream"; # Added 2022-01-15 1583 ring-daemon = jami-daemon; # Added 2021-10-26 1584 - rkt = throw "rkt was archived by upstream"; # Added 2020-05-16 1585 - rls = throw "rls was discontinued upstream, use rust-analyzer instead"; # Added 2022-09-06 1586 - rng_tools = throw "'rng_tools' has been renamed to/replaced by 'rng-tools'"; # Converted to throw 2022-02-22 1587 - robomongo = throw "'robomongo' has been renamed to/replaced by 'robo3t'"; # Converted to throw 2022-02-22 1588 rockbox_utility = rockbox-utility; # Added 2022-03-17 1589 - rocm-runtime-ext = throw "rocm-runtime-ext has been removed, since its functionality was added to rocm-runtime"; #added 2020-08-21 1590 rome = throw "rome is no longer maintained, consider using biome instead"; # Added 2023-09-12 1591 rpiboot-unstable = rpiboot; # Added 2021-07-30 1592 rr-unstable = rr; # Added 2022-09-17 1593 - rssglx = throw "'rssglx' has been renamed to/replaced by 'rss-glx'"; # Converted to throw 2022-02-22 1594 - rssh = throw "rssh has been removed from nixpkgs: no upstream releases since 2012, several known CVEs"; # Added 2020-08-25 1595 rtl8723bs-firmware = throw "rtl8723bs-firmware was added in mainline kernel version 4.12"; # Added 2023-07-03 1596 - rtv = throw "rtv was archived by upstream. Consider using tuir, an actively maintained fork"; # Added 2021-08-08 1597 rtsp-simple-server = throw "rtsp-simple-server is rebranded as mediamtx, including default config path update"; # Added 2023-04-11 1598 - rubyMinimal = throw "rubyMinimal was removed due to being unused"; 1599 runCommandNoCC = runCommand; 1600 runCommandNoCCLocal = runCommandLocal; 1601 - runwayml = throw "runwayml is now a webapp"; # Added 2021-04-17 1602 - rustracerd = throw "rustracerd has been removed because it is broken and unmaintained"; # Added 2021-10-19 1603 - rustracer = throw "rustracer has been removed as it has been deprecated"; # Added 2022-11-28 1604 rxvt_unicode = rxvt-unicode-unwrapped; # Added 2020-02-02 1605 rxvt_unicode-with-plugins = rxvt-unicode; # Added 2020-02-02 1606 ··· 1612 ### S ### 1613 1614 s2n = s2n-tls; # Added 2021-03-03 1615 - s3gof3r = throw "s3gof3r has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-04 1616 - s6Dns = throw "'s6Dns' has been renamed to/replaced by 's6-dns'"; # Converted to throw 2022-02-22 1617 - s6LinuxUtils = throw "'s6LinuxUtils' has been renamed to/replaced by 's6-linux-utils'"; # Converted to throw 2022-02-22 1618 - s6Networking = throw "'s6Networking' has been renamed to/replaced by 's6-networking'"; # Converted to throw 2022-02-22 1619 - s6PortableUtils = throw "'s6PortableUtils' has been renamed to/replaced by 's6-portable-utils'"; # Converted to throw 2022-02-22 1620 - sagemath = throw "'sagemath' has been renamed to/replaced by 'sage'"; # Converted to throw 2022-02-22 1621 - salut_a_toi = throw "salut_a_toi was removed because it was broken and used Python 2"; # added 2022-06-05 1622 - sam = throw "'sam' has been renamed to/replaced by 'deadpixi-sam'"; # Converted to throw 2022-02-22 1623 - samsungUnifiedLinuxDriver = throw "'samsungUnifiedLinuxDriver' has been renamed to/replaced by 'samsung-unified-linux-driver'"; # Converted to throw 2022-02-22 1624 sane-backends-git = sane-backends; # Added 2021-02-19 1625 - saneBackends = throw "'saneBackends' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-02-22 1626 - saneBackendsGit = throw "'saneBackendsGit' has been renamed to/replaced by 'sane-backends'"; # Converted to throw 2022-02-22 1627 - saneFrontends = throw "'saneFrontends' has been renamed to/replaced by 'sane-frontends'"; # Converted to throw 2022-02-22 1628 - scaff = throw "scaff is deprecated - replaced by https://gitlab.com/jD91mZM2/inc (not in nixpkgs yet)"; # Added 2020-03-01 1629 - scallion = throw "scallion has been removed, because it is currently unmaintained upstream"; # added 2021-12-15 1630 scantailor = scantailor-advanced; # Added 2022-05-26 1631 - scim = throw "'scim' has been renamed to/replaced by 'sc-im'"; # Converted to throw 2022-02-22 1632 - scollector = throw "'scollector' has been renamed to/replaced by 'bosun'"; # Converted to throw 2022-02-22 1633 - screencloud = throw "screencloud has been removed, because it was unmaintained in nixpkgs"; # Added 2022-05-26 1634 - scribus_1_4 = throw "scribus has been removed, because it is based on EOL technologies, e.g. qt4 and python2"; # Added 2022-05-29 1635 - scribusUnstable = throw "'scribusUnstable' has been renamed to 'scribus'"; # Added 2022-05-13 1636 - scrollkeeper = throw "'scrollkeeper' has been removed due to deprecated LibXML2 headers"; # Added 2022-11-08 1637 - scyther = throw "scyther has been removed since it currently only supports Python 2, see https://github.com/cascremers/scyther/issues/20"; # Added 2021-10-07 1638 sdlmame = throw "'sdlmame' has been renamed to/replaced by 'mame'"; # Converted to throw 2023-09-10 1639 - seeks = throw "seeks has been removed from nixpkgs, as it was unmaintained"; # Added 2020-06-21 1640 - sepolgen = throw "sepolgen was merged into selinux-python"; # Added 2021-11-11 1641 session-desktop-appimage = session-desktop; 1642 sequoia = sequoia-sq; # Added 2023-06-26 1643 sexp = sexpp; # Added 2023-07-03 1644 sget = throw "sget has been removed from nixpkgs, as it is not supported upstream anymore see https://github.com/sigstore/sget/issues/145"; # Added 2023-05-26 1645 - shared_mime_info = throw "'shared_mime_info' has been renamed to/replaced by 'shared-mime-info'"; # Converted to throw 2022-02-22 1646 inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17 1647 - shellinabox = throw "shellinabox has been removed from nixpkgs, as it was unmaintained upstream"; # Added 2021-12-15 1648 shhgit = throw "shhgit is broken and is no longer maintained. See https://github.com/eth0izzle/shhgit#-shhgit-is-no-longer-maintained-" ; # Added 2023-08-08 1649 shipyard = jumppad; # Added 2023-06-06 1650 - sickbeard = throw "sickbeard has been removed from nixpkgs, as it was unmaintained"; # Added 2022-01-01 1651 - sickrage = throw "sickbeard has been removed from nixpkgs, as it was unmaintained"; # Added 2022-01-01 1652 signumone-ks = throw "signumone-ks has been removed from nixpkgs because the developers stopped offering the binaries"; # Added 2023-08-17 1653 - sigurlx = throw "sigurlx has been removed (upstream is gone)"; # Added 2022-01-24 1654 - skrooge2 = throw "'skrooge2' has been renamed to/replaced by 'skrooge'"; # Converted to throw 2022-02-22 1655 - skype = throw "'skype' has been renamed to/replaced by 'skypeforlinux'"; # Converted to throw 2022-02-22 1656 - skype4pidgin = throw "skype4pidgin has been remove from nixpkgs, because it stopped working when classic Skype was retired"; # Added 2021-07-14 1657 - skype_call_recorder = throw "skype_call_recorder has been removed from nixpkgs, because it stopped working when classic Skype was retired"; # Added 2020-10-31 1658 slack-dark = slack; # Added 2020-03-27 1659 - sleepyhead = throw "'sleepyhead' has been renamed to/replaced by 'OSCAR'"; # Added 2022-11-20 1660 - slic3r-prusa3d = throw "'slic3r-prusa3d' has been renamed to/replaced by 'prusa-slicer'"; # Converted to throw 2022-02-22 1661 slmenu = throw "slmenu has been removed (upstream is gone)"; # Added 2023-04-06 1662 - slurm-full = throw "'slurm-full' has been renamed to/replaced by 'slurm'"; # Converted to throw 2022-02-22 1663 slurm-llnl = slurm; # renamed July 2017 1664 - slurm-llnl-full = slurm-full; # renamed July 2017 1665 - smbclient = throw "'smbclient' has been renamed to/replaced by 'samba'"; # Converted to throw 2022-02-22 1666 smesh = throw "'smesh' has been removed as it's unmaintained and depends on opencascade-oce, which is also unmaintained"; # Added 2023-09-18 1667 - smugline = throw "smugline has been removed from nixpkgs, as it's unmaintained and depends on deprecated libraries"; # Added 2020-11-04 1668 - snack = throw "snack has been removed: broken for 5+ years"; # Added 2022-04-21 1669 soldat-unstable = opensoldat; # Added 2022-07-02 1670 solr_8 = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 1671 solr = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 ··· 1696 source-han-serif-simplified-chinese = source-han-serif; 1697 source-han-serif-traditional-chinese = source-han-serif; 1698 1699 - sourcetrail = throw "sourcetrail has been removed: abandoned by upstream"; # Added 2022-08-14 1700 1701 spacegun = throw "'spacegun' has been removed as unmaintained"; # Added 2023-05-20 1702 - spaceOrbit = throw "'spaceOrbit' has been renamed to/replaced by 'space-orbit'"; # Converted to throw 2022-02-22 1703 spectral = neochat; # Added 2020-12-27 1704 - speech_tools = throw "'speech_tools' has been renamed to/replaced by 'speech-tools'"; # Converted to throw 2022-02-22 1705 - speedometer = throw "speedometer has been removed: abandoned by upstream"; # Added 2022-04-24 1706 - speedtest_cli = throw "'speedtest_cli' has been renamed to/replaced by 'speedtest-cli'"; # Converted to throw 2022-02-22 1707 speedtest-exporter = throw "'speedtest-exporter' has been removed as unmaintained"; # Added 2023-07-31 1708 - sphinxbase = throw "sphinxbase has been removed: unmaintained"; # Added 2022-04-24 1709 spice-gtk_libsoup2 = throw "'spice-gtk_libsoup2' has been renamed to/replaced by 'spice-gtk'"; # Added 2023-02-21 1710 - spice_gtk = throw "'spice_gtk' has been renamed to/replaced by 'spice-gtk'"; # Converted to throw 2022-02-22 1711 - spice_protocol = throw "'spice_protocol' has been renamed to/replaced by 'spice-protocol'"; # Converted to throw 2022-02-22 1712 - spidermonkey_1_8_5 = throw "spidermonkey_1_8_5 has been removed, because it is based on Firefox 4.0 from 2011"; # added 2021-05-03 1713 - spidermonkey_38 = throw "spidermonkey_38 has been removed. Please use spidermonkey_78 instead"; # Added 2021-03-21 1714 - spidermonkey_60 = throw "spidermonkey_60 has been removed. Please use spidermonkey_78 instead"; # Added 2021-03-21 1715 - spidermonkey_68 = throw "spidermonkey_68 has been removed. Please use spidermonkey_91 instead"; # added 2022-01-04 1716 # spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell 1717 spidermonkey = spidermonkey_78; # Added 2020-10-09 1718 - split2flac = throw "split2flac has been removed. Consider using the shnsplit command from shntool package or help packaging unflac."; # added 2022-01-13 1719 spotify-unwrapped = spotify; # added 2022-11-06 1720 spring-boot = spring-boot-cli; # added 2020-04-24 1721 - sqlite3_analyzer = throw "'sqlite3_analyzer' has been renamed to/replaced by 'sqlite-analyzer'"; # Converted to throw 2022-02-22 1722 - sqlite-replication = throw "'sqlite-replication' has been removed since it is no longer required by lxd and is not maintained."; # throw 2022-12-26 1723 - sqliteInteractive = throw "'sqliteInteractive' has been renamed to/replaced by 'sqlite-interactive'"; # Converted to throw 2022-02-22 1724 - sqliteman = throw "sqliteman has been removed, because it was unmaintained"; # Added 2022-05-26 1725 squid4 = throw "'squid4' has been renamed to/replaced by 'squid'"; # Converted to throw 2023-09-10 1726 - srcml = throw "'srcml' has been removed: abandoned by upstream"; # Added 2022-07-21 1727 - sshfsFuse = throw "'sshfsFuse' has been renamed to/replaced by 'sshfs-fuse'"; # Converted to throw 2022-02-22 1728 - ssmtp = throw "'ssmtp' has been removed due to the software being unmaintained. 'msmtp' can be used as a replacement"; # Added 2022-04-17 1729 - ssr = throw "ssr has been removed, because it was unmaintained in nixpkgs and depended on qt4"; # Added 2022-05-26 1730 - stanchion = throw "Stanchion was part of riak-cs which is not maintained anymore"; # added 2020-10-14 1731 starboard-octant-plugin = throw "starboard-octant-plugin has been dropped due to needing octant which is archived"; # Added 2023-09-29 1732 steam-run-native = steam-run; # added 2022-02-21 1733 - stride = throw "'stride' aka. Atlassian Stride is dead since 2019 (bought by Slack)"; # added 2022-06-15 1734 - structure-synth = throw "structure-synth has been removed, because it was unmaintained"; # Added 2022-05-09 1735 - stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # Added 2021-05-09 1736 - subversion_1_10 = throw "subversion_1_10 has been removed as it has reached its end of life"; # Added 2022-04-26 1737 - subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # Added 2021-03-31 1738 - sudolikeaboss = throw "sudolikeaboss is no longer maintained by upstream"; # Added 2022-04-16 1739 sumneko-lua-language-server = lua-language-server; # Added 2023-02-07 1740 - sundials_3 = throw "sundials_3 was removed in 2020-02. outdated and no longer needed"; 1741 - surf-webkit2 = throw "'surf-webkit2' has been renamed to/replaced by 'surf'"; # Converted to throw 2022-02-22 1742 - swec = throw "swec has been removed; broken and abandoned upstream"; # Added 2021-10-14 1743 - sweep-visualizer = throw "'sweep-visualizer' is abondoned upstream and depends on deprecated GNOME2/GTK2"; # Added 2022-06-15 1744 swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 1745 - swfdec = throw "swfdec has been removed as broken and unmaintained"; # Added 2020-08-23 1746 swtpm-tpm2 = swtpm; # Added 2021-02-26 1747 syncthing-cli = syncthing; # Added 2021-04-06 1748 - synology-drive = throw "synology-drive has been superseded by synology-drive-client"; # Added 2021-11-26 1749 - system_config_printer = throw "'system_config_printer' has been renamed to/replaced by 'system-config-printer'"; # Converted to throw 2022-02-22 1750 - systemd-cryptsetup-generator = throw "systemd-cryptsetup-generator is now included in the systemd package"; # Added 2020-07-12 1751 - systemd_with_lvm2 = throw "systemd_with_lvm2 is obsolete, enabled by default via the lvm module"; # Added 2020-07-12 1752 - systool = throw "'systool' has been renamed to/replaced by 'sysfsutils'"; # Converted to throw 2022-02-22 1753 1754 ### T ### 1755 1756 - tahoelafs = throw "'tahoelafs' has been renamed to/replaced by 'tahoe-lafs'"; # Converted to throw 2022-02-22 1757 tangogps = foxtrotgps; # Added 2020-01-26 1758 taplo-cli = taplo; # Added 2022-07-30 1759 taplo-lsp = taplo; # Added 2022-07-30 1760 taro = taproot-assets; # Added 2023-07-04 1761 tdesktop = telegram-desktop; # Added 2023-04-07 1762 - tdm = throw "tdm has been removed because nobody can figure out how to fix OpenAL integration. Use precompiled binary and `steam-run` instead"; 1763 - teleconsole = throw "teleconsole is archived by upstream"; # Added 2022-04-05 1764 telegram-cli = throw "telegram-cli was removed because it was broken and abandoned upstream"; # Added 2023-07-28 1765 - telepathy-qt = throw "telepathy-qt no longer supports Qt 4. Please use libsForQt5.telepathy instead"; # Added 2020-07-02 1766 - telepathy_farstream = throw "'telepathy_farstream' has been renamed to/replaced by 'telepathy-farstream'"; # Converted to throw 2022-02-22 1767 - telepathy_gabble = throw "'telepathy_gabble' has been renamed to/replaced by 'telepathy-gabble'"; # Converted to throw 2022-02-22 1768 - telepathy_glib = throw "'telepathy_glib' has been renamed to/replaced by 'telepathy-glib'"; # Converted to throw 2022-02-22 1769 - telepathy_haze = throw "'telepathy_haze' has been renamed to/replaced by 'telepathy-haze'"; # Converted to throw 2022-02-22 1770 - telepathy_idle = throw "'telepathy_idle' has been renamed to/replaced by 'telepathy-idle'"; # Converted to throw 2022-02-22 1771 - telepathy_logger = throw "'telepathy_logger' has been renamed to/replaced by 'telepathy-logger'"; # Converted to throw 2022-02-22 1772 - telepathy_mission_control = throw "'telepathy_mission_control' has been renamed to/replaced by 'telepathy-mission-control'"; # Converted to throw 2022-02-22 1773 - telepathy_qt = throw "'telepathy_qt' has been renamed to/replaced by 'telepathy-qt'"; # Converted to throw 2022-02-22 1774 - telepathy_qt5 = throw "'telepathy_qt5' has been renamed to/replaced by 'libsForQt5.telepathy'"; # Converted to throw 2022-02-22 1775 - telnet = throw "'telnet' has been renamed to/replaced by 'inetutils'"; # Converted to throw 2022-02-22 1776 - terminus = throw "terminus has been removed, it was unmaintained in nixpkgs"; # Added 2021-08-21 1777 - termonad-with-packages = throw "termonad-with-packages has been renamed to just 'termonad'"; # Added 2022-10-15 1778 - terraform-full = throw "terraform-full has been removed, it was an alias for 'terraform.full'"; # Added 2022-08-02 1779 - terraform_0_13 = throw "terraform_0_13 has been removed from nixpkgs"; # Added 2022-06-26 1780 - terraform_0_14 = throw "terraform_0_14 has been removed from nixpkgs"; # Added 2022-06-26 1781 - terraform_0_15 = throw "terraform_0_15 has been removed from nixpkgs"; # Added 2022-06-26 1782 - tesseract_4 = throw "'tesseract_4' has been renamed to/replaced by 'tesseract4'"; # Converted to throw 2022-02-22 1783 testVersion = testers.testVersion; # Added 2022-04-20 1784 invalidateFetcherByDrvHash = testers.invalidateFetcherByDrvHash; # Added 2022-05-05 1785 - tex-gyre-bonum-math = throw "'tex-gyre-bonum-math' has been renamed to/replaced by 'tex-gyre-math.bonum'"; # Converted to throw 2022-02-22 1786 - tex-gyre-pagella-math = throw "'tex-gyre-pagella-math' has been renamed to/replaced by 'tex-gyre-math.pagella'"; # Converted to throw 2022-02-22 1787 - tex-gyre-schola-math = throw "'tex-gyre-schola-math' has been renamed to/replaced by 'tex-gyre-math.schola'"; # Converted to throw 2022-02-22 1788 - tex-gyre-termes-math = throw "'tex-gyre-termes-math' has been renamed to/replaced by 'tex-gyre-math.termes'"; # Converted to throw 2022-02-22 1789 - textadept11 = throw "textadept11 has been removed. Please use textadept instead"; # Added 2022-12-23 TODO: UPDATE THE DATE 1790 - tftp_hpa = throw "'tftp_hpa' has been renamed to/replaced by 'tftp-hpa'"; # Converted to throw 2022-02-22 1791 - thunderbird-68 = throw "Thunderbird 68 reached end of life with its final release 68.12.0 on 2020-08-25"; 1792 - thunderbird-bin-68 = thunderbird-68; 1793 - thunderbird-wayland = thunderbird; # Added 2022-11-15 1794 timescale-prometheus = promscale; # Added 2020-09-29 1795 - timedoctor = throw "'timedoctor' has been removed from nixpkgs"; # Added 2022-10-09 1796 - timetable = throw "timetable has been removed, as the upstream project has been abandoned"; # Added 2021-09-05 1797 tinygltf = throw "TinyglTF has been embedded in draco due to lack of other users and compatibility breaks."; # Added 2023-06-25 1798 tixati = throw "'tixati' has been removed from nixpkgs as it is unfree and unmaintained"; # Added 2023-03-17 1799 tkcvs = tkrev; # Added 2022-03-07 1800 - togglesg-download = throw "togglesg-download was removed 2021-04-30 as it's unmaintained"; # Added 2021-04-30 1801 tokodon = plasma5Packages.tokodon; 1802 - tomboy = throw "tomboy is not actively developed anymore and was removed"; # Added 2022-01-27 1803 - tomcat7 = throw "tomcat7 has been removed from nixpkgs as it has reached end of life"; # Added 2021-06-16 1804 - tomcat8 = throw "tomcat8 has been removed from nixpkgs as it has reached end of life"; # Added 2021-06-16 1805 - tomcat85 = throw "tomcat85 has been removed from nixpkgs as it has reached end of life"; # Added 2020-03-11 1806 - tor-arm = throw "tor-arm has been removed from nixpkgs as the upstream project has been abandoned"; # Added 2022-01-01 1807 tor-browser-bundle-bin = tor-browser; # Added 2023-09-23 1808 - torbrowser = throw "'torbrowser' has been renamed to/replaced by 'tor-browser'"; # Converted to throw 2022-02-22 1809 - torch = throw "torch has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 1810 - torch-hdf5 = throw "torch-hdf5 has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 1811 - torch-repl = throw "torch-repl has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 1812 - torchPackages = throw "torchPackages has been removed, as the upstream project has been abandoned"; # Added 2020-03-28 1813 - trang = throw "'trang' has been renamed to/replaced by 'jing-trang'"; # Converted to throw 2022-02-22 1814 transfig = fig2dev; # Added 2022-02-15 1815 - transmission-remote-cli = throw "transmission-remote-cli has been removed, as the upstream project has been abandoned. Please use tremc instead"; # Added 2020-10-14 1816 - transmission_gtk = throw "'transmission_gtk' has been renamed to/replaced by 'transmission-gtk'"; # Converted to throw 2022-02-22 1817 - transmission_remote_gtk = throw "'transmission_remote_gtk' has been renamed to/replaced by 'transmission-remote-gtk'"; # Converted to throw 2022-02-22 1818 - transporter = throw "transporter has been removed. It was archived upstream, so it's considered abandoned"; 1819 - trebleshot = throw "trebleshot has been removed. It was archived upstream, so it's considered abandoned"; 1820 - trilium = throw "trilium has been removed. Please use trilium-desktop instead"; # Added 2020-04-29 1821 - truecrypt = throw "'truecrypt' has been renamed to/replaced by 'veracrypt'"; # Converted to throw 2022-02-22 1822 trustedGrub = throw "trustedGrub has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 1823 trustedGrub-for-HP = throw "trustedGrub-for-HP has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 1824 - tuijam = throw "tuijam has been removed because Google Play Music was discontinued"; # Added 2021-03-07 1825 - turbo-geth = throw "turbo-geth has been renamed to erigon"; # Added 2021-08-08 1826 tvbrowser-bin = tvbrowser; # Added 2023-03-02 1827 - twister = throw "twister has been removed: abandoned by upstream and python2-only"; # Added 2022-04-26 1828 - tworld2 = throw "tworld2 has been removed, as it was unmaintained"; # Added 2022-05-09 1829 - tychus = throw "tychus has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 1830 - typora = throw "Newer versions of typora use anti-user encryption and refuse to start. As such it has been removed"; # Added 2021-09-11 1831 typst-fmt = typstfmt; # Added 2023-07-15 1832 1833 ### U ### ··· 1835 uade123 = uade; # Added 2022-07-30 1836 uberwriter = apostrophe; # Added 2020-04-23 1837 ubootBeagleboneBlack = ubootAmx335xEVM; # Added 2020-01-21 1838 - uchiwa = throw "uchiwa is deprecated and archived by upstream"; # Added 2022-05-02 1839 - ucsFonts = throw "'ucsFonts' has been renamed to/replaced by 'ucs-fonts'"; # Converted to throw 2022-02-22 1840 - ufraw = throw "ufraw is unmaintained and has been removed from nixpkgs. Its successor, nufraw, doesn't seem to be stable enough. Consider using Darktable for now"; # Added 2020-01-11 1841 uhhyou.lv2 = throw "'uhhyou.lv2' has been removed, upstream gone"; # Added 2023-06-21 1842 - ultrastardx-beta = throw "'ultrastardx-beta' has been renamed to/replaced by 'ultrastardx'"; # Converted to throw 2022-02-22 1843 unicorn-emu = unicorn; # Added 2020-10-29 1844 uniffi-bindgen = throw "uniffi-bindgen has been removed since upstream no longer provides a standalone package for the CLI"; 1845 unifi-poller = unpoller; # Added 2022-11-24 1846 unifiStable = unifi6; # Added 2020-12-28 1847 - unity3d = throw "'unity3d' is unmaintained, has seen no updates in years and depends on deprecated GTK2"; # Added 2022-06-16 1848 untrunc = untrunc-anthwlock; # Added 2021-02-01 1849 urxvt_autocomplete_all_the_things = rxvt-unicode-plugins.autocomplete-all-the-things; # Added 2020-02-02 1850 urxvt_bidi = rxvt-unicode-plugins.bidi; # Added 2020-02-02 ··· 1854 urxvt_tabbedex = rxvt-unicode-plugins.tabbedex; # Added 2020-02-02 1855 urxvt_theme_switch = rxvt-unicode-plugins.theme-switch; # Added 2020-02-02 1856 urxvt_vtwheel = rxvt-unicode-plugins.vtwheel; # Added 2020-02-02 1857 - usb_modeswitch = throw "'usb_modeswitch' has been renamed to/replaced by 'usb-modeswitch'"; # Converted to throw 2022-02-22 1858 usbguard-nox = throw "'usbguard-nox' has been renamed to/replaced by 'usbguard'"; # Converted to throw 2023-09-10 1859 utahfs = throw "utahfs has been removed, as it is broken and lack of maintenance from upstream"; # Added 2023-09-29 1860 util-linuxCurses = util-linux; # Added 2022-04-12 ··· 1863 ### V ### 1864 1865 v4l_utils = throw "'v4l_utils' has been renamed to/replaced by 'v4l-utils'"; # Converted to throw 2023-09-10 1866 - valkyrie = throw "valkyrie was removed from nixpkgs, because it is unmaintained upstream"; # Added 2022-05-10 1867 vamp = { vampSDK = vamp-plugin-sdk; }; # Added 2020-03-26 1868 vaapiIntel = intel-vaapi-driver; # Added 2023-05-31 1869 - vapor = throw "vapor was removed because it was unmaintained and upstream service no longer exists"; 1870 - varnish62 = throw "varnish62 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-07-26 1871 - varnish63 = throw "varnish63 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-07-26 1872 - varnish65 = throw "varnish65 was removed from nixpkgs, because it is unmaintained upstream. Please switch to a different release"; # Added 2021-09-15 1873 - varnish70 = throw "varnish70 was removed from nixpkgs, because it was superseded upstream. Please switch to a different release"; # Added 2022-03-17 1874 vaultwarden-vault = vaultwarden.webvault; # Added 2022-12-13 1875 - varnish71 = throw "varnish71 was removed from nixpkgs, because it was superseded upstream. Please switch to a different release"; # Added 2022-11-08 1876 vdirsyncerStable = vdirsyncer; # Added 2020-11-08, see https://github.com/NixOS/nixpkgs/issues/103026#issuecomment-723428168 1877 ventoy-bin = ventoy; # Added 2023-04-12 1878 ventoy-bin-full = ventoy-full; # Added 2023-04-12 1879 - venus = throw "venus has been removed from nixpkgs, as it's unmaintained"; # Added 2021-02-05 1880 - vgo2nix = throw "vgo2nix has been removed, because it was deprecated. Consider using gomod2nix instead"; # added 2022-08-24 1881 ViennaRNA = viennarna; # Added 2023-08-23 1882 vimHugeX = vim-full; # Added 2022-12-04 1883 vim_configurable = vim-full; # Added 2022-12-04 1884 - vimbWrapper = throw "'vimbWrapper' has been renamed to/replaced by 'vimb'"; # Converted to throw 2022-02-22 1885 - virtinst = throw "virtinst has been removed, as it's included in virt-manager"; # Added 2021-07-21 1886 - virtuoso = throw "virtuoso has been removed, because it was unmaintained in nixpkgs"; # added 2021-12-15 1887 virtmanager = throw "'virtmanager' has been renamed to/replaced by 'virt-manager'"; # Converted to throw 2023-09-10 1888 virtmanager-qt = throw "'virtmanager-qt' has been renamed to/replaced by 'virt-manager-qt'"; # Converted to throw 2023-09-10 1889 - virtviewer = throw "'virtviewer' has been renamed to/replaced by 'virt-viewer'"; # Converted to throw 2022-02-22 1890 vivaldi-widevine = throw "'vivaldi-widevine' has been renamed to/replaced by 'widevine-cdm'"; # Added 2023-02-25 1891 vkBasalt = vkbasalt; # Added 2022-11-22 1892 - vnc2flv = throw "vnc2flv has been removed: abandoned by upstream"; # Added 2022-03-21 1893 - vorbisTools = throw "'vorbisTools' has been renamed to/replaced by 'vorbis-tools'"; # Converted to throw 2022-02-22 1894 vte_290 = throw "'vte_290' has been renamed to/replaced by 'vte'"; # Added 2023-01-05 1895 - vtun = throw "vtune has been removed as it's unmaintained upstream"; # Added 2021-10-29 1896 inherit (libsForQt5.mauiPackages) vvave; # added 2022-05-17 1897 1898 ### W ### 1899 - wavesurfer = throw "wavesurfer has been removed: depended on snack which has been removed"; # Added 2022-04-21 1900 waybar-hyprland = throw "waybar-hyprland has been removed: hyprland support is now built into waybar by default."; # Added 2023-08-21 1901 - way-cooler = throw "way-cooler is abandoned by its author: https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"; # Added 2020-01-13 1902 wayfireApplications-unwrapped = throw '' 1903 'wayfireApplications-unwrapped.wayfire' has been renamed to/replaced by 'wayfire' 1904 'wayfireApplications-unwrapped.wayfirePlugins' has been renamed to/replaced by 'wayfirePlugins' ··· 1906 'wayfireApplications-unwrapped.wlroots' has been removed 1907 ''; # Add 2023-07-29 1908 wcm = throw "'wcm' has been renamed to/replaced by 'wayfirePlugins.wcm'"; # Add 2023-07-29 1909 - webbrowser = throw "webbrowser was removed because it's unmaintained upstream and was marked as broken in nixpkgs for over a year"; # Added 2022-03-21 1910 - webkit = throw "'webkit' has been renamed to/replaced by 'webkitgtk'"; # Converted to throw 2022-02-22 1911 webkitgtk_5_0 = throw "'webkitgtk_5_0' has been superseded by 'webkitgtk_6_0'"; # Added 2023-02-25 1912 - weechat-matrix-bridge = throw "'weechat-matrix-bridge' has been renamed to/replaced by 'weechatScripts.weechat-matrix-bridge'"; # Converted to throw 2022-02-22 1913 - weighttp = throw "weighttp has been removed: abandoned by upstream"; # Added 2022-04-20 1914 - whirlpool-gui = throw "whirlpool-gui has been removed as it depended on an insecure version of Electron"; # added 2022-02-08 1915 wio = throw "wio has been removed from nixpkgs, it was unmaintained and required wlroots_0_14 at the time of removal"; # Added 2023-04-28 1916 - wicd = throw "wicd has been removed as it is abandoned"; # Added 2021-09-11 1917 - wineFull = throw "'wineFull' has been renamed to/replaced by 'winePackages.full'"; # Converted to throw 2022-02-22 1918 - wineMinimal = throw "'wineMinimal' has been renamed to/replaced by 'winePackages.minimal'"; # Converted to throw 2022-02-22 1919 - wineStable = throw "'wineStable' has been renamed to/replaced by 'winePackages.stable'"; # Converted to throw 2022-02-22 1920 - wineStaging = throw "'wineStaging' has been renamed to/replaced by 'wine-staging'"; # Converted to throw 2022-02-22 1921 - wineUnstable = throw "'wineUnstable' has been renamed to/replaced by 'winePackages.unstable'"; # Converted to throw 2022-02-22 1922 wineWayland = wine-wayland; 1923 win-qemu = throw "'win-qemu' has been replaced by 'win-virtio'"; # Added 2023-08-16 1924 win-signed-gplpv-drivers = throw "win-signed-gplpv-drivers has been removed from nixpkgs, as it's unmaintained: https://help.univention.com/t/installing-signed-gplpv-drivers/21828"; # Added 2023-08-17 1925 - winpdb = throw "winpdb has been removed: abandoned by upstream"; # Added 2022-04-22 1926 - winusb = throw "'winusb' has been renamed to/replaced by 'woeusb'"; # Converted to throw 2022-02-22 1927 - wireguard = throw "'wireguard' has been renamed to/replaced by 'wireguard-tools'"; # Converted to throw 2022-02-22 1928 wlroots_0_14 = throw "'wlroots_0_14' has been removed in favor of newer versions"; # Added 2023-07-29 1929 wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name 1930 wmii_hg = wmii; 1931 - wmc-mpris = throw "wmc-mpris has been abandoned by upstream due to its redundancy"; # Added 2022-11-13 1932 - ws = throw "ws has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 1933 - wxGTK = throw "wxGTK28 has been removed from nixpkgs as it has reached end of life"; # Added 2022-11-04 1934 - wxGTK28 = throw "wxGTK28 has been removed from nixpkgs as it has reached end of life"; # Added 2022-11-04 1935 - wxGTK29 = throw "wxGTK29 has been removed from nixpkgs as it has reached end of life"; # Added 2022-11-04 1936 wxGTK30 = throw "wxGTK30 has been removed from nixpkgs as it has reached end of life"; # Added 2023-03-22 1937 wxGTK30-gtk2 = wxGTK30; # Added 2022-12-03 1938 wxGTK30-gtk3 = wxGTK30; # Added 2022-12-03 1939 - wxGTK31-gtk2 = throw "'wxGTK31-gtk2' has been removed from nixpkgs as it depends on deprecated GTK2"; # Added 2022-10-27 1940 - wxGTK31-gtk3 = throw "'wxGTK31-gtk3' has been renamed to/replaced by 'wxGTK31'"; # Added 2022-10-27 1941 wxmac = wxGTK30; # Added 2023-03-22 1942 - wxmupen64plus = throw "wxmupen64plus was removed because the upstream disappeared"; # Added 2022-01-31 1943 - wxcam = throw "'wxcam' has seen no updates in ten years, crashes (SIGABRT) on startup and depends on deprecated wxGTK28/GNOME2/GTK2, use 'gnome.cheese'"; # Added 2022-06-15 1944 1945 ### X ### 1946 1947 - x11 = throw "'x11' has been renamed to/replaced by its constituents"; # Converted to throw 2022-02-22 1948 - xara = throw "xara has been removed from nixpkgs. Unmaintained since 2006"; # Added 2020-06-24 1949 - xbmc = throw "'xbmc' has been renamed to/replaced by 'kodi'"; # Converted to throw 2022-02-22 1950 xbmc-retroarch-advanced-launchers = kodi-retroarch-advanced-launchers; # Added 2021-11-19 1951 - xbmcPlain = throw "'xbmcPlain' has been renamed to/replaced by 'kodiPlain'"; # Converted to throw 2022-02-22 1952 - xbmcPlugins = throw "'xbmcPlugins' has been renamed to/replaced by 'kodiPackages'"; # Converted to throw 2022-02-22 1953 xdg_utils = xdg-utils; # Added 2021-02-01 1954 - xfce4-14 = throw "xfce4-14 has been removed, use xfce instead"; # added 2022-12-25 1955 - xfceUnstable = throw "xfceUnstable has been removed, use xfce instead"; # added 2022-12-25 1956 xineLib = xine-lib; # Added 2021-04-27 1957 xineUI = xine-ui; # Added 2021-04-27 1958 - xlibsWrapper = throw "'xlibsWrapper' has been replaced by its constituents"; # Converted to throw 2022-12-27 1959 - xmonad_log_applet_gnome3 = throw "'xmonad_log_applet_gnome3' has been renamed to/replaced by 'xmonad_log_applet'"; # Converted to throw 2022-02-22 1960 - xmpp-client = throw "xmpp-client has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 1961 - xmpppy = throw "xmpppy has been removed from nixpkgs as it is unmaintained and python2-only"; 1962 - xp-pen-g430 = throw "xp-pen-g430 has been renamed to xp-pen-g430-driver"; # Converted to throw 2022-06-23 1963 - xpf = throw "xpf has been removed: abandoned by upstream"; # Added 2022-04-26 1964 - xf86_video_nouveau = throw "'xf86_video_nouveau' has been renamed to/replaced by 'xorg.xf86videonouveau'"; # Converted to throw 2022-02-22 1965 - xf86_input_mtrack = throw '' 1966 - xf86_input_mtrack has been removed from nixpkgs as it is broken and 1967 - unmaintained. Working alternatives are libinput and synaptics. 1968 - ''; 1969 - xf86_input_multitouch = throw "xf86_input_multitouch has been removed from nixpkgs"; # Added 2020-01-20 1970 - xlibs = throw "'xlibs' has been renamed to/replaced by 'xorg'"; # Converted to throw 2022-02-22 1971 - xow = throw ( 1972 - "Upstream has ended support for 'xow' and the package has been removed" + 1973 - "from nixpkgs. Users are urged to switch to 'xone'." 1974 - ); # Added 2022-08-02 1975 - xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22 1976 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 1977 - xvidcap = throw "'xvidcap' has been removed because of a broken dependency"; # Added 2022-11-08 1978 xvfb_run = xvfb-run; # Added 2021-05-07 1979 1980 ### Y ### ··· 1982 yacc = bison; # moved from top-level 2021-03-14 1983 yafaray-core = libyafaray; # Added 2022-09-23 1984 yarn2nix-moretea-openssl_1_1 = throw "'yarn2nix-moretea-openssl_1_1' has been removed."; # Added 2023-02-04 1985 - yarssr = throw "yarssr has been removed as part of the python2 deprecation"; # Added 2022-01-15 1986 - youtubeDL = throw "'youtubeDL' has been renamed to/replaced by 'youtube-dl'"; # Converted to throw 2022-02-22 1987 - ytop = throw "ytop has been abandoned by upstream. Consider switching to bottom instead"; 1988 - yubikey-neo-manager = throw "yubikey-neo-manager has been removed because it was broken. Use yubikey-manager-qt instead"; # Added 2021-03-08 1989 - yubioath-desktop = throw "yubioath-desktop has been deprecated by upstream in favor of yubioath-flutter"; # Added 2022-11-22 1990 yuzu-ea = yuzu-early-access; # Added 2022-08-18 1991 yuzu = yuzu-mainline; # Added 2021-01-25 1992 1993 ### Z ### 1994 1995 - zabbix30 = throw "Zabbix 3.0.x is end of life, see https://www.zabbix.com/documentation/5.0/manual/installation/upgrade/sources for a direct upgrade path to 5.0.x"; # Added 2021-04-07 1996 - zdfmediathk = throw "'zdfmediathk' has been renamed to/replaced by 'mediathekview'"; # Converted to throw 2022-02-22 1997 - zimreader = throw "zimreader has been removed from nixpkgs as it has been replaced by kiwix-serve and stopped working with modern zimlib versions"; # Added 2021-03-28 1998 - zimwriterfs = throw "zimwriterfs is now part of zim-tools"; # Added 2022-06-10. 1999 zinc = zincsearch; # Added 2023-05-28 2000 zq = zed.overrideAttrs (old: { meta = old.meta // { mainProgram = "zq"; }; }); # Added 2023-02-06 2001 2002 ### UNSORTED ### 2003 2004 - ocamlPackages_latest = throw "'ocamlPackages_latest' has been renamed to/replaced by 'ocaml-ng.ocamlPackages_latest'"; # Converted to throw 2022-02-22 2005 - 2006 - ocamlformat_0_11_0 = throw "ocamlformat_0_11_0 has been removed in favor of newer versions"; # Added 2022-06-01 2007 - ocamlformat_0_12 = throw "ocamlformat_0_12 has been removed in favor of newer versions"; # Added 2022-06-01 2008 - ocamlformat_0_13_0 = throw "ocamlformat_0_13_0 has been removed in favor of newer versions"; # Added 2022-06-01 2009 - ocamlformat_0_14_0 = throw "ocamlformat_0_14_0 has been removed in favor of newer versions"; # Added 2022-06-01 2010 - ocamlformat_0_14_1 = throw "ocamlformat_0_14_1 has been removed in favor of newer versions"; # Added 2022-06-01 2011 - ocamlformat_0_14_2 = throw "ocamlformat_0_14_2 has been removed in favor of newer versions"; # Added 2022-06-01 2012 - ocamlformat_0_14_3 = throw "ocamlformat_0_14_3 has been removed in favor of newer versions"; # Added 2022-06-01 2013 - ocamlformat_0_15_0 = throw "ocamlformat_0_15_0 has been removed in favor of newer versions"; # Added 2022-06-01 2014 - ocamlformat_0_15_1 = throw "ocamlformat_0_15_1 has been removed in favor of newer versions"; # Added 2022-06-01 2015 - ocamlformat_0_16_0 = throw "ocamlformat_0_16_0 has been removed in favor of newer versions"; # Added 2022-06-01 2016 - ocamlformat_0_17_0 = throw "ocamlformat_0_17_0 has been removed in favor of newer versions"; # Added 2022-06-01 2017 - ocamlformat_0_18_0 = throw "ocamlformat_0_18_0 has been removed in favor of newer versions"; # Added 2022-06-01 2018 - 2019 - zabbix44 = throw '' 2020 - Zabbix 4.4 is end of life. For details on upgrading to Zabbix 5.0 look at 2021 - https://www.zabbix.com/documentation/current/manual/installation/upgrade_notes_500 2022 - ''; # Added 2020-08-17 2023 - 2024 zeroc_ice = throw "'zeroc_ice' has been renamed to/replaced by 'zeroc-ice'"; # Converted to throw 2023-09-10 2025 2026 - # Added 2020-06-22 2027 - zeromq3 = throw "zeromq3 has been deprecated by zeromq4"; 2028 - jzmq = throw "jzmq has been removed from nixpkgs, as it was unmaintained"; 2029 - 2030 - ant-dracula-theme = throw "ant-dracula-theme is now dracula-theme, and theme name is Dracula instead of Ant-Dracula"; 2031 dina-font-pcf = dina-font; # Added 2020-02-09 2032 dnscrypt-proxy2 = dnscrypt-proxy; # Added 2023-02-02 2033 - gcc-snapshot = throw "gcc-snapshot: Marked as broken for >2 years, additionally this 'snapshot' pointed to a fairly old one from gcc7"; 2034 gnatsd = throw "'gnatsd' has been renamed to/replaced by 'nats-server'"; # Converted to throw 2023-09-10 2035 2036 - obs-gstreamer = throw '' 2037 - obs-gstreamer has been converted into a plugin for use with wrapOBS. 2038 - Its new location is obs-studio-plugins.obs-gstreamer. 2039 - ''; # Added 2021-06-01 2040 - 2041 - obs-move-transition = throw '' 2042 - obs-move-transition has been converted into a plugin for use with wrapOBS. 2043 - Its new location is obs-studio-plugins.obs-move-transition. 2044 - ''; # Added 2021-06-01 2045 - 2046 - obs-multi-rtmp = throw '' 2047 - obs-multi-rtmp has been converted into a plugin for use with wrapOBS. 2048 - Its new location is obs-studio-plugins.obs-multi-rtmp. 2049 - ''; # Added 2021-06-01 2050 - 2051 - obs-ndi = throw '' 2052 - obs-ndi has been converted into a plugin for use with wrapOBS. 2053 - Its new location is obs-studio-plugins.obs-ndi. 2054 - ''; # Added 2021-06-01 2055 - 2056 - obs-v4l2sink = throw "obs-v4l2sink is integrated into upstream OBS since version 26.1"; # Added 2021-06-01 2057 - 2058 - obs-wlrobs = throw '' 2059 - wlrobs has been converted into a plugin for use with wrapOBS. 2060 - Its new location is obs-studio-plugins.wlrobs. 2061 - ''; # Added 2021-06-01 2062 - 2063 posix_man_pages = man-pages-posix; # Added 2021-04-15 2064 - sqldeveloper_18 = throw "sqldeveloper_18 is not maintained anymore!"; # Added 2020-02-04 2065 - todolist = throw "todolist is now ultralist"; # Added 2020-12-27 2066 - tor-browser-bundle = throw "tor-browser-bundle was removed because it was out of date and inadequately maintained. Please use tor-browser instead"; # Added 2020-01-10 2067 - tor-browser-unwrapped = throw "tor-browser-unwrapped was removed because it was out of date and inadequately maintained. Please use tor-browser instead"; # Added 2020-01-10 2068 - torchat = throw "torchat was removed because it was broken and requires Python 2"; # added 2022-06-05 2069 ttyrec = ovh-ttyrec; # Added 2021-01-02 2070 zplugin = zinit; # Added 2021-01-30 2071 zyn-fusion = zynaddsubfx; # Added 2022-08-05 ··· 2081 targetLlvmLibraries = targetPackages.llvmPackages_git.libraries or llvmPackages_git.libraries; 2082 targetLlvm = targetPackages.llvmPackages_git.llvm or llvmPackages_git.llvm; 2083 }); 2084 - 2085 - # Added 2022-01-28 2086 - zeroc-ice-36 = throw "Unmaintained, doesn't build w/glibc-2.34"; 2087 2088 /* If these are in the scope of all-packages.nix, they cause collisions 2089 between mixed versions of qt. See:
··· 53 forceSystem = system: _: 54 (import self.path { localSystem = { inherit system; }; }); 55 56 ### A ### 57 58 airfield = throw "airfield has been removed due to being unmaintained"; # Added 2023-05-19 59 alertmanager-bot = throw "alertmanager-bot is broken and has been archived by upstream" ; # Added 2023-07-28 60 alsaLib = alsa-lib; # Added 2021-06-09 61 alsaOss = alsa-oss; # Added 2021-06-10 62 alsaPluginWrapper = alsa-plugins-wrapper; # Added 2021-06-10 63 alsaPlugins = alsa-plugins; # Added 2021-06-10 64 alsaTools = alsa-tools; # Added 2021-06-10 65 alsaUtils = alsa-utils; # Added 2021-06-10 66 angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06 67 ansible_2_12 = throw "Ansible 2.12 goes end of life in 2023/05 and can't be supported throughout the 23.05 release cycle"; # Added 2023-05-16 68 antimicroX = antimicrox; # Added 2021-10-31 69 aseprite-unfree = aseprite; # Added 2023-08-26 70 asls = throw "asls has been removed: abandoned by upstream"; # Added 2023-03-16 71 asterisk_16 = throw "asterisk_16: Asterisk 16 is end of life and has been removed"; # Added 2023-04-19 72 asterisk_19 = throw "asterisk_19: Asterisk 19 is end of life and has been removed"; # Added 2023-04-19 73 atom = throw "'atom' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 74 atom-beta = throw "'atom-beta' has been removed because discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 75 atomEnv = throw "'atomEnv' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 76 atomPackages = throw "'atomPackages' has been removed because 'atom' is discontinued and deprecated. Consider using 'pulsar', a maintained fork"; # Added 2023-10-01 77 avldrums-lv2 = x42-avldrums; # Added 2020-03-29 78 awesome-4-0 = awesome; # Added 2022-05-05 79 80 ### B ### 81 82 badtouch = authoscope; # Project was renamed, added 20210626 83 baget = throw "'baget' has been removed due to being unmaintained"; 84 bashInteractive_5 = bashInteractive; # Added 2021-08-20 85 bash_5 = bash; # Added 2021-08-20 86 bazel_3 = throw "bazel 3 is past end of life as it is not an lts version"; # Added 2023-02-02 87 bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 88 bird2 = bird; # Added 2022-02-21 89 ddclient = throw "ddclient has been removed on the request of the upstream maintainer because it is unmaintained and has bugs. Please switch to a different software like `inadyn` or `knsupdate`."; # Added 2023-07-04 90 bluezFull = throw "'bluezFull' has been renamed to/replaced by 'bluez'"; # Converted to throw 2023-09-10 91 boost168 = throw "boost168 has been deprecated in favor of the latest version"; # Added 2023-06-08 92 boost169 = throw "boost169 has been deprecated in favor of the latest version"; # Added 2023-06-08 93 boost16x = throw "boost16x has been deprecated in favor of the latest version"; # Added 2023-06-08 ··· 97 boost174 = throw "boost174 has been deprecated in favor of the latest version"; # Added 2023-06-08 98 boost17x = throw "boost17x has been deprecated in favor of the latest version"; # Added 2023-07-13 99 boost18x = throw "boost18x has been deprecated in favor of the latest version"; # Added 2023-07-13 100 bpftool = bpftools; # Added 2021-05-03 101 bpytop = throw "bpytop has been deprecated by btop"; # Added 2023-02-16 102 bro = throw "'bro' has been renamed to/replaced by 'zeek'"; # Converted to throw 2023-09-10 103 inherit (libsForQt5.mauiPackages) buho; # added 2022-05-17 104 bukut = throw "bukut has been removed since it has been archived by upstream"; # Added 2023-05-24 105 # Shorter names; keep the longer name for back-compat. Added 2023-04-11 106 buildFHSUserEnv = buildFHSEnv; 107 buildFHSUserEnvChroot = buildFHSEnvChroot; ··· 115 bitwarden_rs-vault = vaultwarden-vault; 116 117 118 119 ### C ### 120 121 callPackage_i686 = pkgsi686Linux.callPackage; 122 cask = emacs.pkgs.cask; # Added 2022-11-12 123 cargo-embed = throw "cargo-embed is now part of the probe-rs package"; # Added 2023-07-03 124 cargo-flash = throw "cargo-flash is now part of the probe-rs package"; # Added 2023-07-03 125 catfish = throw "'catfish' has been renamed to/replaced by 'xfce.catfish'"; # Converted to throw 2023-09-10 126 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API"; 127 ccloud-cli = throw "ccloud-cli has been removed, please use confluent-cli instead"; # Added 2023-06-09 128 chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22 129 chocolateDoom = chocolate-doom; # Added 2023-05-01 130 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27 131 citra = citra-nightly; # added 2022-05-17 132 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17 133 cpp-ipfs-api = cpp-ipfs-http-client; # Project has been renamed. Added 2022-05-15 134 crispyDoom = crispy-doom; # Added 2023-05-01 135 136 # these are for convenience, not for backward compat and shouldn't expire ··· 147 clang15Stdenv = lowPrio llvmPackages_15.stdenv; 148 clang16Stdenv = lowPrio llvmPackages_16.stdenv; 149 150 clasp = clingo; # added 2022-12-22 151 claws-mail-gtk3 = claws-mail; # Added 2021-07-10 152 codimd = hedgedoc; # Added 2020-11-29 153 inherit (libsForQt5.mauiPackages) communicator; # added 2022-05-17 154 compton = throw "'compton' has been renamed to/replaced by 'picom'"; # Converted to throw 2023-09-10 155 concurrencykit = libck; # Added 2021-03 156 157 cups-kyodialog3 = cups-kyodialog; # Added 2022-11-12 158 cvs_fast_export = cvs-fast-export; # Added 2021-06-10 159 160 ### D ### 161 162 oroborus = throw "oroborus was removed, because it was abandoned years ago."; #Added 2023-09-10 163 dart_stable = dart; # Added 2020-01-15 164 dat = nodePackages.dat; 165 deadpixi-sam = deadpixi-sam-unstable; 166 167 debugedit-unstable = debugedit; # Added 2021-11-22 168 deltachat-electron = deltachat-desktop; # added 2021-07-18 169 170 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18 171 devserver = throw "'devserver' has been removed in favor of 'miniserve' or other alternatives"; # Added 2023-01-13 172 dhcp = throw "dhcp (ISC DHCP) has been removed from nixpkgs, because it reached its end of life"; # Added 2023-04-04 173 dnnl = oneDNN; # Added 2020-04-22 174 dolphin-emu-beta = dolphin-emu; # Added 2023-02-11 175 dolphinEmu = dolphin-emu; # Added 2021-11-10 176 dolphinEmuMaster = dolphin-emu-beta; # Added 2021-11-10 177 dot-http = throw "'dot-http' has been removed: abandoned by upstream. Use hurl instead."; # Added 2023-01-16 178 dotty = scala_3; # Added 2023-08-20 179 dotnet-netcore = dotnet-runtime; # Added 2021-10-07 180 dtv-scan-tables_linuxtv = dtv-scan-tables; # Added 2023-03-03 181 dtv-scan-tables_tvheadend = dtv-scan-tables; # Added 2023-03-03 182 dylibbundler = macdylibbundler; # Added 2021-04-24 183 184 ### E ### 185 186 ec2_ami_tools = ec2-ami-tools; # Added 2021-10-08 187 ec2_api_tools = ec2-api-tools; # Added 2021-10-08 188 ec2-utils = amazon-ec2-utils; # Added 2022-02-01 189 190 elasticsearch7Plugins = elasticsearchPlugins; 191 192 # Electron 193 electron_9 = throw "electron_9 has been removed in favor of newer versions"; # added 2023-09-11 194 195 elementary-planner = throw "elementary-planner has been renamed to planify"; # Added 2023-06-24 196 197 elixir_ls = elixir-ls; # Added 2023-03-20 ··· 202 emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04 203 emacsMacport = emacs-macport; # Added 2023-08-10 204 emacsNativeComp = emacs28NativeComp; # Added 2022-06-08 205 emacsPackagesNg = throw "'emacsPackagesNg' has been renamed to/replaced by 'emacs.pkgs'"; # Converted to throw 2023-09-10 206 emacsPackagesNgFor = throw "'emacsPackagesNgFor' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2023-09-10 207 emacsWithPackages = emacs.pkgs.withPackages; # Added 2020-12-18 208 209 empathy = throw "empathy was removed as it is unmaintained and no longer launches due to libsoup3 migration"; # Added 2023-01-20 210 enchant1 = throw "enchant1 has been removed from nixpkgs, as it was unmaintained"; # Added 2023-01-18 211 enyo-doom = enyo-launcher; # Added 2022-09-09 212 epoxy = libepoxy; # Added 2021-11-11 213 inherit (beam.interpreters) erlangR26 erlangR25 erlangR24; # added 2023-03-21 214 erlang_21 = throw "erlangR21 has been removed in favor of newer versions."; # added 2023-03-21 215 erlangR21 = erlang_21; ··· 217 erlangR22 = erlang_22; 218 erlang_23 = throw "erlangR23 has been removed in favor of newer versions."; # added 2023-09-11 219 erlangR23 = erlang_23; 220 etcd_3_3 = throw "etcd_3_3 has been removed because upstream no longer maintains it"; # Added 2023-09-29 221 eterm = throw "eterm was removed because it is still insecure: https://github.com/mej/Eterm/issues/7"; # Added 2023-09-10 222 exa = throw "'exa' has been removed because it is unmaintained upstream. Consider using 'eza', a maintained fork"; # Added 2023-09-07 223 exhibitor = throw "'exhibitor' has been removed because it is unmaintained upstream"; # Added 2023-06-20 224 225 ### F ### 226 227 faustStk = faustPhysicalModeling; # Added 2023-05-16 228 fastnlo = fastnlo_toolkit; # Added 2021-04-24 229 inherit (luaPackages) fennel; # Added 2022-09-24 230 fetchFromGithub = throw "You meant fetchFromGitHub, with a capital H"; # preserve 231 findimagedupes = throw "findimagedupes has been removed because the perl bindings are no longer compatible"; # Added 2023-07-10 232 finger_bsd = bsd-finger; 233 fingerd_bsd = bsd-fingerd; 234 firefox-wayland = firefox; # Added 2022-11-15 235 firmwareLinuxNonfree = linux-firmware; # Added 2022-01-09 236 fishfight = jumpy; # Added 2022-08-03 237 fitnesstrax = throw "fitnesstrax was removed from nixpkgs because it disappeared upstream and no longer compiles"; # added 2023-07-04 238 flatbuffers_2_0 = flatbuffers; # Added 2022-05-12 239 flutter2 = throw "flutter2 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 240 flutter37 = throw "flutter37 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03 241 foldingathome = fahclient; # Added 2020-09-03 242 243 foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 244 foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 245 foundationdb60 = throw "foundationdb60 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 246 foundationdb61 = throw "foundationdb61 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06 247 foxitreader = throw "foxitreader has been removed because it had vulnerabilities and was unmaintained"; # added 2023-02-20 248 fuse2fs = if stdenv.isLinux then e2fsprogs.fuse2fs else null; # Added 2022-03-27 preserve, reason: convenience, arch has a package named fuse2fs too. 249 fx_cast_bridge = fx-cast-bridge; # added 2023-07-26 250 251 fcitx = throw "fcitx is deprecated, please use fcitx5 instead."; # Added 2023-03-13 252 fcitx-engines = throw "fcitx-engines is deprecated, please use fcitx5 instead."; # Added 2023-03-13 ··· 255 ### G ### 256 257 g4py = python3Packages.geant4; # Added 2020-06-06 258 garmindev = throw "'garmindev' has been removed as the dependent software 'qlandkartegt' has been removed"; # Added 2023-04-17 259 geekbench4 = throw "'geekbench4' has been renamed to 'geekbench_4'"; # Added 2023-03-10 260 geekbench5 = throw "'geekbench5' has been renamed to 'geekbench_5'"; # Added 2023-03-10 261 ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18 262 git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13 263 264 gitAndTools = self // { ··· 271 topGit = top-git; 272 }; # Added 2021-01-14 273 274 gitter = throw "gitter has been removed since the client has been abandoned by upstream with the backend migration to Matrix"; # Added 2023-09-18 275 gmailieer = lieer; # Added 2020-04-19 276 gmic-qt-krita = throw "gmic-qt-krita was removed as it's no longer supported upstream."; # Converted to throw 2023-02-02 277 gnatboot11 = gnat-bootstrap11; 278 gnatboot12 = gnat-bootstrap12; 279 gnatboot = gnat-bootstrap; 280 gnome-firmware-updater = gnome-firmware; # added 2022-04-14 281 gnome-passwordsafe = gnome-secrets; # added 2022-01-30 282 gnome-mpv = throw "'gnome-mpv' has been renamed to/replaced by 'celluloid'"; # Converted to throw 2023-09-10 283 gnome_user_docs = throw "'gnome_user_docs' has been renamed to/replaced by 'gnome-user-docs'"; # Converted to throw 2023-09-10 284 285 gnuradio-with-packages = gnuradio3_7.override { 286 extraPackages = lib.attrVals [ ··· 291 gmock = gtest; # moved from top-level 2021-03-14 292 293 gnome3 = gnome; # Added 2021-05-07 294 gnuradio3_7 = throw "gnuradio3_7 has been removed because it required Python 2"; # Added 2022-01-16 295 gnuradio-ais = throw "'gnuradio-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10 296 gnuradio-gsm = throw "'gnuradio-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10 ··· 298 gnuradio-nacl = throw "'gnuradio-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 299 gnuradio-osmosdr = throw "'gnuradio-osmosdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.osmosdr'"; # Converted to throw 2023-09-10 300 gnuradio-rds = throw "'gnuradio-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 301 gobby5 = gobby; # Added 2021-02-01 302 303 #godot 304 godot = throw "godot has been renamed to godot3 to distinguish from version 4"; # Added 2023-07-16 ··· 306 godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16 307 godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16 308 309 google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10 310 go-thumbnailer = thud; # Added 2023-09-21 311 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10 312 313 graalvm11-ce = throw "graalvm11-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 314 graalvm17-ce = throw "graalvm17-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 315 graalvm19-ce = throw "graalvm19-ce has been removed because upstream dropped support to different JDK versions for each GraalVM release. Please use graalvm-ce instead"; # Added 2023-09-26 316 gradle_4 = throw "gradle_4 has been removed because it's no longer being updated"; # Added 2023-01-17 317 gradle_5 = throw "gradle_5 has been removed because it's no longer being updated"; # Added 2023-01-17 318 gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10 319 graylog = throw "graylog is now available in versions 3.3 up to 5.0. Please mind the upgrade path and choose the appropriate version. Direct upgrading from 3.3 to 4.3 or above is not supported"; # Added 2023-04-24 320 gr-gsm = throw "'gr-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10 321 gringo = clingo; # added 2022-11-27 322 gr-limesdr = throw "'gr-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2023-09-10 323 gr-nacl = throw "'gr-nacl' has been renamed to/replaced by 'gnuradio3_7.pkgs.nacl'"; # Converted to throw 2023-09-10 ··· 325 gr-rds = throw "'gr-rds' has been renamed to/replaced by 'gnuradio3_7.pkgs.rds'"; # Converted to throw 2023-09-10 326 grub2_full = grub2; # Added 2022-11-18 327 grub = throw "grub1 was removed after not being maintained upstream for a decade. Please switch to another bootloader"; # Added 2023-04-11 328 329 ### H ### 330 331 inherit (harePackages) hare harec; # Added 2022-08-10 332 haxe_3_2 = throw "'haxe_3_2' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 333 haxe_3_4 = throw "'haxe_3_4' has been removed because it is old and no longer used by any packages in nixpkgs"; # Added 2023-03-15 334 hepmc = throw "'hepmc' has been renamed to/replaced by 'hepmc2'"; # Converted to throw 2023-09-10 335 ht-rust = xh; # Added 2021-02-13 336 hydra-unstable = hydra_unstable; # added 2022-05-10 337 338 ### I ### 339 340 i3-gaps = i3; # Added 2023-01-03 341 icedtea8_web = throw "'icedtea8_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2023-09-10 342 icedtea_web = throw "'icedtea_web' has been renamed to/replaced by 'adoptopenjdk-icedtea-web'"; # Converted to throw 2023-09-10 343 imag = throw "'imag' has been removed, upstream gone"; # Added 2023-01-13 344 imagemagick7Big = imagemagickBig; # Added 2021-02-22 345 imagemagick7 = imagemagick; # Added 2021-02-22 346 imagemagick7_light = imagemagick_light; # Added 2021-02-22 347 imlib = throw "imlib has been dropped due to the lack of maintenance from upstream since 2004"; # Added 2023-01-04 348 instead-launcher = throw "instead-launcher has been removed, because it depended on qt4"; # Added 2023-07-26 349 insync-v3 = throw "insync-v3 has been merged into the insync package; use insync instead"; #Added 2023-05-13 350 index-fm = libsForQt5.mauiPackages.index; # added 2022-05-17 351 infiniband-diags = throw "'infiniband-diags' has been renamed to/replaced by 'rdma-core'"; # Converted to throw 2023-09-10 352 inotifyTools = inotify-tools; 353 inter-ui = inter; # Added 2021-03-27 354 iouyap = throw "'iouyap' is deprecated and archived by upstream, use 'ubridge' instead"; # Added 2023-09-21 355 ipfs = kubo; # Added 2022-09-27 356 ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27 357 ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27 358 ipfs-migrator = kubo-migrator; # Added 2022-09-27 359 iproute = iproute2; # moved from top-level 2021-03-14 360 361 ### J ### 362 363 364 jack2Full = jack2; # moved from top-level 2021-03-14 365 jami-client-qt = jami-client; # Added 2022-11-06 366 jami-client = jami; # Added 2023-02-10 367 jami-daemon = jami.daemon; # Added 2023-02-10 368 jfbpdf = throw "'jfbpdf' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 369 jfbview = throw "'jfbview' has been removed, because it depends on an outdated and insecure version of mupdf"; # Added 2023-06-27 370 jira-cli = throw "jira-cli was removed because it is no longer maintained"; # Added 2023-02-28 371 372 # Julia 373 374 375 ### K ### 376 377 # k3d was a 3d editing software k-3d - "k3d has been removed because it was broken and has seen no release since 2016" Added 2022-01-04 378 # now kube3d/k3d will take it's place 379 kube3d = k3d; # Added 2022-0705 380 kafkacat = kcat; # Added 2021-10-07 381 kdeconnect = plasma5Packages.kdeconnect-kde; # Added 2020-10-28 382 keepassx = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 383 keepassx2 = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 384 kerberos = libkrb5; # moved from top-level 2021-03-14 385 kexectools = kexec-tools; # Added 2021-09-03 386 keysmith = libsForQt5.kdeGear.keysmith; # Added 2021-07-14 387 kfctl = throw "kfctl is broken and has been archived by upstream" ; # Added 2023-08-21 388 kgx = gnome-console; # Added 2022-02-19 389 kicad-with-packages3d = throw "'kicad-with-packages3d' has been renamed to/replaced by 'kicad'"; # Converted to throw 2023-09-10 390 kio-admin = libsForQt5.kdeGear.kio-admin; # Added 2023-03-18 391 kodiGBM = kodi-gbm; 392 kodiPlain = kodi; 393 kodiPlainWayland = kodi-wayland; 394 kodiPlugins = kodiPackages; # Added 2021-03-09; 395 kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # Added 2021-03-23 396 krb5Full = krb5; 397 krita-beta = krita; # moved from top-level 2021-12-23 398 kubei = kubeclarity; # Added 2023-05-20 399 kuma-prometheus-sd = throw "kuma-prometheus-sd has been deprecated upstream"; # Added 2023-07-02 400 401 ### L ### 402 403 larynx = piper-tts; # Added 2023-05-09 404 latinmodern-math = lmmath; 405 ldgallery = throw "'ldgallery' has been removed from nixpkgs. Use the Flake provided by ldgallery instead"; # Added 2023-07-26 406 lfs = dysk; # Added 2023-07-03 407 libayatana-indicator-gtk3 = libayatana-indicator; # Added 2022-10-18 408 libayatana-appindicator-gtk3 = libayatana-appindicator; # Added 2022-10-18 409 libbencodetools = bencodetools; # Added 2022-07-30 410 libbpf_1 = libbpf; # Added 2022-12-06 411 libcap_pam = throw "'libcap_pam' has been replaced with 'libcap'"; # Converted to throw 2023-09-10 412 libgme = game-music-emu; # Added 2022-07-20 413 libgpgerror = libgpg-error; # Added 2021-09-04 414 libheimdal = heimdal; # Added 2022-11-18 415 libintlOrEmpty = throw "'libintlOrEmpty' has been replaced by gettext"; # Converted to throw 2023-09-10 416 libixp_hg = libixp; 417 libjpeg_drop = libjpeg_original; # Added 2020-06-05 418 liblastfm = libsForQt5.liblastfm; # Added 2020-06-14 419 libmongo-client = throw "'libmongo-client' has been removed, upstream gone"; # Added 2023-06-22 420 libpulseaudio-vanilla = libpulseaudio; # Added 2022-04-20 421 libraw_unstable = throw "'libraw_unstable' has been removed, please use libraw"; # Added 2023-01-30 422 librdf = lrdf; # Added 2020-03-22 423 libressl_3_5 = throw "'libressl_3_5' has reached end-of-life "; # Added 2023-05-07 424 librtlsdr = rtl-sdr; # Added 2023-02-18 425 librewolf-wayland = librewolf; # Added 2022-11-15 426 libseat = seatd; # Added 2021-06-24 427 libsForQt515 = libsForQt5; # Added 2022-11-24 428 libtensorflow-bin = libtensorflow; # Added 2022-09-25 429 libtorrentRasterbar = libtorrent-rasterbar; # Added 2020-12-20 430 libtorrentRasterbar-1_2_x = libtorrent-rasterbar-1_2_x; # Added 2020-12-20 431 libtorrentRasterbar-2_0_x = libtorrent-rasterbar-2_0_x; # Added 2020-12-20 432 libungif = giflib; # Added 2020-02-12 433 libusb = libusb1; # Added 2020-04-28 434 libwnck3 = libwnck; 435 libyamlcpp = yaml-cpp; # Added 2023-01-29 436 libyamlcpp_0_3 = yaml-cpp_0_3; # Added 2023-01-29 437 lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01 438 llama = walk; # Added 2023-01-23 439 440 # Linux kernels ··· 481 linux_6_3 = linuxKernel.kernels.linux_6_3; 482 linux_6_4 = linuxKernel.kernels.linux_6_4; 483 linux_6_5 = linuxKernel.kernels.linux_6_5; 484 linux_rpi0 = linuxKernel.kernels.linux_rpi1; 485 linux_rpi02w = linuxKernel.kernels.linux_rpi3; 486 linux_rpi1 = linuxKernel.kernels.linux_rpi1; 487 linux_rpi2 = linuxKernel.kernels.linux_rpi2; 488 linux_rpi3 = linuxKernel.kernels.linux_rpi3; 489 linux_rpi4 = linuxKernel.kernels.linux_rpi4; 490 491 # Added 2021-04-04 492 linuxPackages_xen_dom0 = linuxPackages; ··· 508 ''; 509 linux_latest_hardened = linuxPackages_latest_hardened; 510 511 512 lobster-two = google-fonts; # Added 2021-07-22 513 luxcorerender = throw "'luxcorerender' has been removed as it's unmaintained and broken in nixpkgs since a while ago"; # Added 2023-06-07 514 lzma = xz; # moved from top-level 2021-03-14 515 516 ### M ### 517 518 MACS2 = macs2; # Added 2023-06-12 519 mariadb_104 = throw "mariadb_104 has been removed from nixpkgs, please switch to another version like mariadb_106"; # Added 2023-09-11 520 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 521 markdown-pp = throw "markdown-pp was removed from nixpkgs, because the upstream archived it on 2021-09-02"; # Added 2023-07-22 522 markmind = throw "markmind has been removed from nixpkgs, because it depended on an old version of electron"; # Added 2023-09-12 523 matrique = spectral; # Added 2020-01-27 524 matrix-recorder = throw "matrix-recorder has been removed due to being unmaintained"; # Added 2023-05-21 525 maui-nota = libsForQt5.mauiPackages.nota; # added 2022-05-17 526 mcomix3 = mcomix; # Added 2022-06-05 527 meme = meme-image-generator; # Added 2021-04-21 528 mess = throw "'mess' has been renamed to/replaced by 'mame'"; # Converted to throw 2023-09-10 529 microsoft_gsl = microsoft-gsl; # Added 2023-05-26 530 mime-types = mailcap; # Added 2022-01-21 531 minizip2 = pkgs.minizip-ng; # Added 2022-12-28 532 monero = monero-cli; # Added 2021-11-28 533 mongodb-4_0 = throw "mongodb-4_0 has been removed, it's end of life since April 2022"; # Added 2023-01-05 534 mongodb-4_2 = throw "mongodb-4_2 has been removed, it's end of life since April 2023"; # Added 2023-06-06 535 536 moz-phab = mozphab; # Added 2022-08-09 537 mozart-binary = throw "'mozart-binary' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10 538 mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10 539 mpc_cli = mpc-cli; # moved from top-level 2022-01-24 540 mpd_clientlib = libmpdclient; # Added 2021-02-11 541 mumble_git = throw "'mumble_git' has been renamed to/replaced by 'pkgs.mumble'"; # Converted to throw 2023-09-10 542 murmur_git = throw "'murmur_git' has been renamed to/replaced by 'pkgs.murmur'"; # Converted to throw 2023-09-10 543 mutt-with-sidebar = mutt; # Added 2022-09-17 544 mysql-client = hiPrio mariadb.client; 545 mysql = mariadb; # moved from top-level 2021-03-14 546 547 # floating point textures patents are expired, 548 # so package reduced to alias 549 mesa_drivers = mesa.drivers; 550 551 ### N ### 552 553 ncdu_2 = ncdu; # Added 2022-07-22 554 555 net_snmp = throw "'net_snmp' has been renamed to/replaced by 'net-snmp'"; # Converted to throw 2023-09-10 556 netbox_3_3 = throw "netbox 3.3 series has been removed as it was EOL"; # Added 2023-09-02 557 nagiosPluginsOfficial = monitoring-plugins; 558 neochat = libsForQt5.kdeGear.neochat; # added 2022-05-10 559 nitrokey-udev-rules = libnitrokey; # Added 2023-03-25 560 nix-direnv-flakes = nix-direnv; 561 nix-review = throw "'nix-review' has been renamed to/replaced by 'nixpkgs-review'"; # Converted to throw 2023-09-10 ··· 568 nix_2_6 = nixVersions.nix_2_6; 569 nixopsUnstable = nixops_unstable; # Added 2022-03-03 570 nixosTest = testers.nixosTest; # Added 2022-05-05 571 nmap-unfree = nmap; # Added 2021-04-06 572 nodejs-14_x = nodejs_14; # Added 2022-11-06 573 nodejs-slim-14_x = nodejs-slim_14; # Added 2022-11-06 574 nodejs-16_x = nodejs_16; # Added 2022-11-06 ··· 576 nodejs-slim-16_x = nodejs-slim_16; # Added 2022-11-06 577 nodejs-18_x = nodejs_18; # Added 2022-11-06 578 nodejs-slim-18_x = nodejs-slim_18; # Added 2022-11-06 579 nomad_1_2 = throw "nomad_1_2 has been removed because it's outdated. Use a a newer version instead"; # Added 2023-09-02 580 nomad_1_3 = throw "nomad_1_3 has been removed because it's outdated. Use a a newer version instead"; # Added 2023-09-02 581 noto-fonts-cjk = noto-fonts-cjk-sans; # Added 2021-12-16 582 noto-fonts-emoji = noto-fonts-color-emoji; # Added 2023-09-09 583 noto-fonts-extra = noto-fonts; # Added 2023-04-08 584 585 ### O ### 586 587 o = orbiton; # Added 2023-04-09 588 oathToolkit = oath-toolkit; # Added 2022-04-04 589 oauth2_proxy = oauth2-proxy; # Added 2021-04-18 590 octant = throw "octant has been dropped due to being archived and vulnerable"; # Added 2023-09-29 591 octant-desktop = throw "octant-desktop has been dropped due to being archived and vulnerable"; # Added 2023-09-29 592 ogre1_9 = throw "ogre1_9 has been removed, use ogre instead"; # Added 2023-03-22 593 ogre1_10 = throw "ogre1_10 has been removed, use ogre instead"; # Added 2023-07-20 594 opa = throw "opa has been removed from nixpkgs as upstream has abandoned the project"; # Added 2023-03-21 595 opam_1_2 = throw "'opam_1_2' has been renamed to/replaced by 'opam'"; # Added 2023-03-08 596 openafs_1_8 = openafs; # Added 2022-08-22 597 opencascade = throw "'opencascade' has been removed as it is unmaintained; consider opencascade-occt instead'"; # Added 2023-09-18 598 openconnect_head = openconnect_unstable; # Added 2022-03-29 599 openconnect_gnutls = openconnect; # Added 2022-03-29 600 openconnect_unstable = throw "openconnect_unstable was removed from nixpkgs as it was not being updated"; # Added 2023-06-01 601 openelec-dvb-firmware = libreelec-dvb-firmware; # Added 2021-05-10 602 openimagedenoise_1_2_x = throw "'openimagedenoise_1_2_x' has been renamed to/replaced by 'openimagedenoise'"; # Added 2023-06-07 603 openimageio2 = openimageio; # Added 2023-01-05 604 openimageio_1 = throw "'openimageio_1' has been removed, please update to 'openimageio' 2"; # Added 2023-06-14 605 openisns = open-isns; # Added 2020-01-28 606 openjpeg_2 = openjpeg; # Added 2021-01-25 607 openmpt123 = libopenmpt; # Added 2021-09-05 608 openssl_3_0 = openssl_3; # Added 2022-06-27 609 openvpn_24 = throw "openvpn_24 has been removed, because it went EOL. 2.5.x or newer is still available"; # Added 2023-01-23 610 orchis = orchis-theme; # Added 2021-06-09 611 osxfuse = macfuse-stubs; # Added 2021-03-20 612 613 ### P ### 614 615 616 packet-cli = metal-cli; # Added 2021-10-25 617 palemoon = throw "palemoon has been dropped due to python2 being EOL and marked insecure. Use 'palemoon-bin' instead"; # Added 2023-05-18 618 paperless = paperless-ngx; # Added 2021-06-06 619 paperless-ng = paperless-ngx; # Added 2022-04-11 620 paper-note = throw "paper-note has been removed: abandoned by upstream"; # Added 2023-05-03 621 parity = openethereum; # Added 2020-08-01 622 pash = throw "'pash' has been removed: abandoned by upstream. Use 'powershell' instead"; # Added 2023-09-16 623 peach = asouldocs; # Added 2022-08-28 624 pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23 625 perldevel = throw "'perldevel' has been dropped due to lack of updates in nixpkgs and lack of consistent support for devel versions by 'perl-cross' releases, use 'perl' instead"; 626 perldevelPackages = perldevel; 627 pgadmin = pgadmin4; 628 pharo-spur64 = pharo; # Added 2022-08-03 629 phodav_2_0 = throw "'phodav_2_0' has been renamed to/replaced by 'phodav'"; # Added 2023-02-21 630 photoflow = throw "photoflow was removed because it was broken and unmaintained by upstream"; # Added 2023-03-10 631 632 # Obsolete PHP version aliases 633 php80 = throw "php80 has been dropped due to the lack of maintenance from upstream for future releases"; # Added 2023-06-21 634 php80Packages = php80; # Added 2023-06-21 635 php80Extensions = php80; # Added 2023-06-21 636 637 pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead."; 638 pkgconfig = throw "'pkgconfig' has been renamed to/replaced by 'pkg-config'"; # Converted to throw 2023-09-10 639 pleroma-otp = pleroma; # Added 2021-07-10 640 pltScheme = racket; # just to be sure 641 pmdk = throw "'pmdk' is discontinued, no further support or maintenance is planned by upstream"; # Added 2023-02-06 642 pomotroid = throw "pomotroid has been removed from nixpkgs, because it depended on an insecure version of electron"; # Added 2023-09-12 643 powerdns = pdns; # Added 2022-03-28 644 645 # postgresql plugins 646 cstore_fdw = postgresqlPackages.cstore_fdw; ··· 654 pgtap = postgresqlPackages.pgtap; 655 plv8 = postgresqlPackages.plv8; 656 postgis = postgresqlPackages.postgis; 657 timescaledb = postgresqlPackages.timescaledb; 658 tsearch_extras = postgresqlPackages.tsearch_extras; 659 660 pinentry_curses = throw "'pinentry_curses' has been renamed to/replaced by 'pinentry-curses'"; # Converted to throw 2023-09-10 ··· 663 pinentry_gtk2 = throw "'pinentry_gtk2' has been renamed to/replaced by 'pinentry-gtk2'"; # Converted to throw 2023-09-10 664 pinentry_qt = throw "'pinentry_qt' has been renamed to/replaced by 'pinentry-qt'"; # Converted to throw 2023-09-10 665 pinentry_qt5 = pinentry-qt; # Added 2020-02-11 666 probe-rs-cli = throw "probe-rs-cli is now part of the probe-rs package"; # Added 2023-07-03 667 processing3 = throw "'processing3' has been renamed to/replaced by 'processing'"; # Converted to throw 2023-09-10 668 prometheus-dmarc-exporter = dmarc-metrics-exporter; # added 2022-05-31 669 prometheus-speedtest-exporter = throw "prometheus-speedtest-exporter was removed as unmaintained"; # Added 2023-07-31 670 protobuf3_17 = throw "protobuf3_17 does not receive updates anymore and has been removed"; # Added 2023-05-21 671 protobuf3_19 = throw "protobuf3_19 does not receive updates anymore and has been removed"; # Added 2023-10-01 672 protonup = protonup-ng; # Added 2022-11-06 673 proxmark3-rrg = proxmark3; # Added 2023-07-25 674 proxmark3-unstable = throw "removed in favor of rfidresearchgroup fork"; # Added 2023-07-25 675 pyls-black = throw "pyls-black has been removed from nixpkgs. Use python-lsp-black instead."; # Added 2023-01-09 676 pyls-mypy = throw "pyls-mypy has been removed from nixpkgs. Use pylsp-mypy instead."; # Added 2023-01-09 677 pygmentex = throw "'pygmentex' has been renamed to/replaced by 'texlive.bin.pygmentex'"; # Converted to throw 2023-09-10 678 pyo3-pack = maturin; 679 pypi2nix = throw "pypi2nix has been removed due to being unmaintained"; 680 pypolicyd-spf = spf-engine; # Added 2022-10-09 681 python = python2; # Added 2022-01-11 682 python-language-server = throw "python-language-server has been removed as it is no longer maintained. Use e.g. python-lsp-server instead"; # Added 2023-01-07 683 python-swiftclient = swiftclient; # Added 2021-09-09 684 pythonFull = python2Full; # Added 2022-01-11 685 pythonPackages = python.pkgs; # Added 2022-01-11 686 687 ### Q ### 688 689 qcsxcad = libsForQt5.qcsxcad; # Added 2020-11-05 690 qtcreator-qt6 = throw "'qtcreator-qt6' has been renamed to/replaced by 'qtcreator', since qt5 version has been removed"; # Added 2023-07-25 691 qflipper = qFlipper; # Added 2022-02-11 692 qlandkartegt = throw "'qlandkartegt' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-04-17 693 qscintilla = libsForQt5.qscintilla; # Added 2023-09-20 694 qscintilla-qt6 = qt6Packages.qscintilla; # Added 2023-09-20 695 qt515 = qt5; # Added 2022-11-24 696 qt5ct = libsForQt5.qt5ct; # Added 2021-12-27 697 qt6ct = qt6Packages.qt6ct; # Added 2023-03-07 698 qtcurve = libsForQt5.qtcurve; # Added 2020-11-07 699 qtile-unwrapped = python3.pkgs.qtile; # Added 2023-05-12 700 qutebrowser-qt6 = throw "'qutebrowser-qt6' has been replaced by 'qutebrowser', since the the qt5 version has been removed"; # Added 2023-08-19 701 702 ### R ### 703 704 radare2-cutter = cutter; # Added 2021-03-30 705 rambox-pro = rambox; # Added 2022-12-12 706 rarian = throw "rarian has been removed as unused"; # Added 2023-07-05 707 retroshare06 = retroshare; 708 rigsofrods = rigsofrods-bin; # Added 2023-03-22 709 ring-daemon = jami-daemon; # Added 2021-10-26 710 rockbox_utility = rockbox-utility; # Added 2022-03-17 711 rome = throw "rome is no longer maintained, consider using biome instead"; # Added 2023-09-12 712 rpiboot-unstable = rpiboot; # Added 2021-07-30 713 rr-unstable = rr; # Added 2022-09-17 714 rtl8723bs-firmware = throw "rtl8723bs-firmware was added in mainline kernel version 4.12"; # Added 2023-07-03 715 rtsp-simple-server = throw "rtsp-simple-server is rebranded as mediamtx, including default config path update"; # Added 2023-04-11 716 runCommandNoCC = runCommand; 717 runCommandNoCCLocal = runCommandLocal; 718 rxvt_unicode = rxvt-unicode-unwrapped; # Added 2020-02-02 719 rxvt_unicode-with-plugins = rxvt-unicode; # Added 2020-02-02 720 ··· 726 ### S ### 727 728 s2n = s2n-tls; # Added 2021-03-03 729 sane-backends-git = sane-backends; # Added 2021-02-19 730 scantailor = scantailor-advanced; # Added 2022-05-26 731 sdlmame = throw "'sdlmame' has been renamed to/replaced by 'mame'"; # Converted to throw 2023-09-10 732 session-desktop-appimage = session-desktop; 733 sequoia = sequoia-sq; # Added 2023-06-26 734 sexp = sexpp; # Added 2023-07-03 735 sget = throw "sget has been removed from nixpkgs, as it is not supported upstream anymore see https://github.com/sigstore/sget/issues/145"; # Added 2023-05-26 736 inherit (libsForQt5.mauiPackages) shelf; # added 2022-05-17 737 shhgit = throw "shhgit is broken and is no longer maintained. See https://github.com/eth0izzle/shhgit#-shhgit-is-no-longer-maintained-" ; # Added 2023-08-08 738 shipyard = jumppad; # Added 2023-06-06 739 signumone-ks = throw "signumone-ks has been removed from nixpkgs because the developers stopped offering the binaries"; # Added 2023-08-17 740 slack-dark = slack; # Added 2020-03-27 741 slmenu = throw "slmenu has been removed (upstream is gone)"; # Added 2023-04-06 742 slurm-llnl = slurm; # renamed July 2017 743 smesh = throw "'smesh' has been removed as it's unmaintained and depends on opencascade-oce, which is also unmaintained"; # Added 2023-09-18 744 soldat-unstable = opensoldat; # Added 2022-07-02 745 solr_8 = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 746 solr = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 ··· 771 source-han-serif-simplified-chinese = source-han-serif; 772 source-han-serif-traditional-chinese = source-han-serif; 773 774 775 spacegun = throw "'spacegun' has been removed as unmaintained"; # Added 2023-05-20 776 spectral = neochat; # Added 2020-12-27 777 speedtest-exporter = throw "'speedtest-exporter' has been removed as unmaintained"; # Added 2023-07-31 778 spice-gtk_libsoup2 = throw "'spice-gtk_libsoup2' has been renamed to/replaced by 'spice-gtk'"; # Added 2023-02-21 779 # spidermonkey is not ABI upwards-compatible, so only allow this for nix-shell 780 spidermonkey = spidermonkey_78; # Added 2020-10-09 781 spotify-unwrapped = spotify; # added 2022-11-06 782 spring-boot = spring-boot-cli; # added 2020-04-24 783 squid4 = throw "'squid4' has been renamed to/replaced by 'squid'"; # Converted to throw 2023-09-10 784 starboard-octant-plugin = throw "starboard-octant-plugin has been dropped due to needing octant which is archived"; # Added 2023-09-29 785 steam-run-native = steam-run; # added 2022-02-21 786 sumneko-lua-language-server = lua-language-server; # Added 2023-02-07 787 swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 788 swtpm-tpm2 = swtpm; # Added 2021-02-26 789 syncthing-cli = syncthing; # Added 2021-04-06 790 791 ### T ### 792 793 tangogps = foxtrotgps; # Added 2020-01-26 794 taplo-cli = taplo; # Added 2022-07-30 795 taplo-lsp = taplo; # Added 2022-07-30 796 taro = taproot-assets; # Added 2023-07-04 797 tdesktop = telegram-desktop; # Added 2023-04-07 798 telegram-cli = throw "telegram-cli was removed because it was broken and abandoned upstream"; # Added 2023-07-28 799 testVersion = testers.testVersion; # Added 2022-04-20 800 invalidateFetcherByDrvHash = testers.invalidateFetcherByDrvHash; # Added 2022-05-05 801 timescale-prometheus = promscale; # Added 2020-09-29 802 tinygltf = throw "TinyglTF has been embedded in draco due to lack of other users and compatibility breaks."; # Added 2023-06-25 803 tixati = throw "'tixati' has been removed from nixpkgs as it is unfree and unmaintained"; # Added 2023-03-17 804 tkcvs = tkrev; # Added 2022-03-07 805 tokodon = plasma5Packages.tokodon; 806 tor-browser-bundle-bin = tor-browser; # Added 2023-09-23 807 transfig = fig2dev; # Added 2022-02-15 808 trustedGrub = throw "trustedGrub has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 809 trustedGrub-for-HP = throw "trustedGrub-for-HP has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10 810 tvbrowser-bin = tvbrowser; # Added 2023-03-02 811 typst-fmt = typstfmt; # Added 2023-07-15 812 813 ### U ### ··· 815 uade123 = uade; # Added 2022-07-30 816 uberwriter = apostrophe; # Added 2020-04-23 817 ubootBeagleboneBlack = ubootAmx335xEVM; # Added 2020-01-21 818 uhhyou.lv2 = throw "'uhhyou.lv2' has been removed, upstream gone"; # Added 2023-06-21 819 unicorn-emu = unicorn; # Added 2020-10-29 820 uniffi-bindgen = throw "uniffi-bindgen has been removed since upstream no longer provides a standalone package for the CLI"; 821 unifi-poller = unpoller; # Added 2022-11-24 822 unifiStable = unifi6; # Added 2020-12-28 823 untrunc = untrunc-anthwlock; # Added 2021-02-01 824 urxvt_autocomplete_all_the_things = rxvt-unicode-plugins.autocomplete-all-the-things; # Added 2020-02-02 825 urxvt_bidi = rxvt-unicode-plugins.bidi; # Added 2020-02-02 ··· 829 urxvt_tabbedex = rxvt-unicode-plugins.tabbedex; # Added 2020-02-02 830 urxvt_theme_switch = rxvt-unicode-plugins.theme-switch; # Added 2020-02-02 831 urxvt_vtwheel = rxvt-unicode-plugins.vtwheel; # Added 2020-02-02 832 usbguard-nox = throw "'usbguard-nox' has been renamed to/replaced by 'usbguard'"; # Converted to throw 2023-09-10 833 utahfs = throw "utahfs has been removed, as it is broken and lack of maintenance from upstream"; # Added 2023-09-29 834 util-linuxCurses = util-linux; # Added 2022-04-12 ··· 837 ### V ### 838 839 v4l_utils = throw "'v4l_utils' has been renamed to/replaced by 'v4l-utils'"; # Converted to throw 2023-09-10 840 vamp = { vampSDK = vamp-plugin-sdk; }; # Added 2020-03-26 841 vaapiIntel = intel-vaapi-driver; # Added 2023-05-31 842 vaultwarden-vault = vaultwarden.webvault; # Added 2022-12-13 843 vdirsyncerStable = vdirsyncer; # Added 2020-11-08, see https://github.com/NixOS/nixpkgs/issues/103026#issuecomment-723428168 844 ventoy-bin = ventoy; # Added 2023-04-12 845 ventoy-bin-full = ventoy-full; # Added 2023-04-12 846 ViennaRNA = viennarna; # Added 2023-08-23 847 vimHugeX = vim-full; # Added 2022-12-04 848 vim_configurable = vim-full; # Added 2022-12-04 849 virtmanager = throw "'virtmanager' has been renamed to/replaced by 'virt-manager'"; # Converted to throw 2023-09-10 850 virtmanager-qt = throw "'virtmanager-qt' has been renamed to/replaced by 'virt-manager-qt'"; # Converted to throw 2023-09-10 851 vivaldi-widevine = throw "'vivaldi-widevine' has been renamed to/replaced by 'widevine-cdm'"; # Added 2023-02-25 852 vkBasalt = vkbasalt; # Added 2022-11-22 853 vte_290 = throw "'vte_290' has been renamed to/replaced by 'vte'"; # Added 2023-01-05 854 inherit (libsForQt5.mauiPackages) vvave; # added 2022-05-17 855 856 ### W ### 857 waybar-hyprland = throw "waybar-hyprland has been removed: hyprland support is now built into waybar by default."; # Added 2023-08-21 858 wayfireApplications-unwrapped = throw '' 859 'wayfireApplications-unwrapped.wayfire' has been renamed to/replaced by 'wayfire' 860 'wayfireApplications-unwrapped.wayfirePlugins' has been renamed to/replaced by 'wayfirePlugins' ··· 862 'wayfireApplications-unwrapped.wlroots' has been removed 863 ''; # Add 2023-07-29 864 wcm = throw "'wcm' has been renamed to/replaced by 'wayfirePlugins.wcm'"; # Add 2023-07-29 865 webkitgtk_5_0 = throw "'webkitgtk_5_0' has been superseded by 'webkitgtk_6_0'"; # Added 2023-02-25 866 wio = throw "wio has been removed from nixpkgs, it was unmaintained and required wlroots_0_14 at the time of removal"; # Added 2023-04-28 867 wineWayland = wine-wayland; 868 win-qemu = throw "'win-qemu' has been replaced by 'win-virtio'"; # Added 2023-08-16 869 win-signed-gplpv-drivers = throw "win-signed-gplpv-drivers has been removed from nixpkgs, as it's unmaintained: https://help.univention.com/t/installing-signed-gplpv-drivers/21828"; # Added 2023-08-17 870 wlroots_0_14 = throw "'wlroots_0_14' has been removed in favor of newer versions"; # Added 2023-07-29 871 wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name 872 wmii_hg = wmii; 873 wxGTK30 = throw "wxGTK30 has been removed from nixpkgs as it has reached end of life"; # Added 2023-03-22 874 wxGTK30-gtk2 = wxGTK30; # Added 2022-12-03 875 wxGTK30-gtk3 = wxGTK30; # Added 2022-12-03 876 wxmac = wxGTK30; # Added 2023-03-22 877 878 ### X ### 879 880 xbmc-retroarch-advanced-launchers = kodi-retroarch-advanced-launchers; # Added 2021-11-19 881 xdg_utils = xdg-utils; # Added 2021-02-01 882 xineLib = xine-lib; # Added 2021-04-27 883 xineUI = xine-ui; # Added 2021-04-27 884 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 885 xvfb_run = xvfb-run; # Added 2021-05-07 886 887 ### Y ### ··· 889 yacc = bison; # moved from top-level 2021-03-14 890 yafaray-core = libyafaray; # Added 2022-09-23 891 yarn2nix-moretea-openssl_1_1 = throw "'yarn2nix-moretea-openssl_1_1' has been removed."; # Added 2023-02-04 892 yuzu-ea = yuzu-early-access; # Added 2022-08-18 893 yuzu = yuzu-mainline; # Added 2021-01-25 894 895 ### Z ### 896 897 zinc = zincsearch; # Added 2023-05-28 898 zq = zed.overrideAttrs (old: { meta = old.meta // { mainProgram = "zq"; }; }); # Added 2023-02-06 899 900 ### UNSORTED ### 901 902 zeroc_ice = throw "'zeroc_ice' has been renamed to/replaced by 'zeroc-ice'"; # Converted to throw 2023-09-10 903 904 dina-font-pcf = dina-font; # Added 2020-02-09 905 dnscrypt-proxy2 = dnscrypt-proxy; # Added 2023-02-02 906 gnatsd = throw "'gnatsd' has been renamed to/replaced by 'nats-server'"; # Converted to throw 2023-09-10 907 908 posix_man_pages = man-pages-posix; # Added 2021-04-15 909 ttyrec = ovh-ttyrec; # Added 2021-01-02 910 zplugin = zinit; # Added 2021-01-30 911 zyn-fusion = zynaddsubfx; # Added 2022-08-05 ··· 921 targetLlvmLibraries = targetPackages.llvmPackages_git.libraries or llvmPackages_git.libraries; 922 targetLlvm = targetPackages.llvmPackages_git.llvm or llvmPackages_git.llvm; 923 }); 924 925 /* If these are in the scope of all-packages.nix, they cause collisions 926 between mixed versions of qt. See:
-14
pkgs/top-level/all-packages.nix
··· 28964 withUkify = false; 28965 withBootloader = false; 28966 }; 28967 - systemdStage1 = systemdMinimal.override { 28968 - pname = "systemd-stage-1"; 28969 - withAcl = true; 28970 - withCryptsetup = true; 28971 - withFido2 = true; 28972 - withKmod = true; 28973 - withTpm2Tss = true; 28974 - withRepart = true; 28975 - }; 28976 - systemdStage1Network = systemdStage1.override { 28977 - pname = "systemd-stage-1-network"; 28978 - withNetworkd = true; 28979 - withLibidn2 = true; 28980 - }; 28981 28982 28983 udev =
··· 28964 withUkify = false; 28965 withBootloader = false; 28966 }; 28967 28968 28969 udev =
+4
pkgs/top-level/ocaml-packages.nix
··· 1886 1887 zed = callPackage ../development/ocaml-modules/zed { }; 1888 1889 zmq = callPackage ../development/ocaml-modules/zmq { }; 1890 1891 zmq-lwt = callPackage ../development/ocaml-modules/zmq/lwt.nix { };
··· 1886 1887 zed = callPackage ../development/ocaml-modules/zed { }; 1888 1889 + zelus = callPackage ../development/ocaml-modules/zelus { }; 1890 + 1891 + zelus-gtk = callPackage ../development/ocaml-modules/zelus-gtk { }; 1892 + 1893 zmq = callPackage ../development/ocaml-modules/zmq { }; 1894 1895 zmq-lwt = callPackage ../development/ocaml-modules/zmq/lwt.nix { };