nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

nixpkgs-ci[bot] and committed by
GitHub
d665fb72 9dda4f29

+207 -472
+1
doc/release-notes/rl-2511.section.md
··· 17 17 18 18 - `base16-builder` node package has been removed due to lack of upstream maintenance. 19 19 - `gentium` package now provides `Gentium-*.ttf` files, and not `GentiumPlus-*.ttf` files like before. The font identifiers `Gentium Plus*` are available in the `gentium-plus` package, and if you want to use the more recently updated package `gentium` [by sil](https://software.sil.org/gentium/), you should update your configuration files to use the `Gentium` font identifier. 20 + - `space-orbit` package has been removed due to lack of upstream maintenance. Debian upstream stopped tracking it in 2011. 20 21 21 22 ## Other Notable Changes {#sec-nixpkgs-release-25.11-notable-changes} 22 23
+7
maintainers/maintainer-list.nix
··· 12956 12956 githubId = 8211181; 12957 12957 name = "Kevin Kandlbinder"; 12958 12958 }; 12959 + keyruu = { 12960 + name = "Lucas"; 12961 + email = "me@keyruu.de"; 12962 + matrix = "@keyruu:matrix.org"; 12963 + github = "Keyruu"; 12964 + githubId = 53177682; 12965 + }; 12959 12966 keysmashes = { 12960 12967 email = "x-89cjg9@keysmash.solutions"; 12961 12968 github = "keysmashes";
+2
nixos/doc/manual/release-notes/rl-2511.section.md
··· 36 36 37 37 - The Pocket ID module ([`services.pocket-id`][#opt-services.pocket-id.enable]) and package (`pocket-id`) has been updated to 1.0.0. Some environment variables have been changed or removed, see the [migration guide](https://pocket-id.org/docs/setup/migrate-to-v1/). 38 38 39 + - The `services.siproxd` module has been removed as `siproxd` is unmaintained and broken with libosip 5.x. 40 + 39 41 - `renovate` was updated to v40. See the [upstream release notes](https://github.com/renovatebot/renovate/releases/tag/40.0.0) for breaking changes. 40 42 41 43 - The `boot.readOnlyNixStore` has been removed. Control over bind mount options on `/nix/store` is now offered by the `boot.nixStoreMountOpts` option.
-1
nixos/modules/module-list.nix
··· 909 909 ./services/misc/servarr/whisparr.nix 910 910 ./services/misc/serviio.nix 911 911 ./services/misc/sickbeard.nix 912 - ./services/misc/siproxd.nix 913 912 ./services/misc/snapper.nix 914 913 ./services/misc/soft-serve.nix 915 914 ./services/misc/sourcehut
+5
nixos/modules/rename.nix
··· 223 223 "services" 224 224 "shout" 225 225 ] "shout was removed because it was deprecated upstream in favor of thelounge.") 226 + (mkRemovedOptionModule [ "services" "siproxd" ] '' 227 + The siproxd package and the corresponding module have been removed due to 228 + the service being unmaintained. `services.asterisk.*` or `services.freeswitch.*` 229 + could be used instead. 230 + '') 226 231 (mkRemovedOptionModule [ "services" "ssmtp" ] '' 227 232 The ssmtp package and the corresponding module have been removed due to 228 233 the program being unmaintained. The options `programs.msmtp.*` can be
-196
nixos/modules/services/misc/siproxd.nix
··· 1 - { 2 - config, 3 - lib, 4 - pkgs, 5 - ... 6 - }: 7 - let 8 - 9 - cfg = config.services.siproxd; 10 - 11 - conf = '' 12 - daemonize = 0 13 - rtp_proxy_enable = 1 14 - user = siproxd 15 - if_inbound = ${cfg.ifInbound} 16 - if_outbound = ${cfg.ifOutbound} 17 - sip_listen_port = ${toString cfg.sipListenPort} 18 - rtp_port_low = ${toString cfg.rtpPortLow} 19 - rtp_port_high = ${toString cfg.rtpPortHigh} 20 - rtp_dscp = ${toString cfg.rtpDscp} 21 - sip_dscp = ${toString cfg.sipDscp} 22 - ${lib.optionalString ( 23 - cfg.hostsAllowReg != [ ] 24 - ) "hosts_allow_reg = ${lib.concatStringsSep "," cfg.hostsAllowReg}"} 25 - ${lib.optionalString ( 26 - cfg.hostsAllowSip != [ ] 27 - ) "hosts_allow_sip = ${lib.concatStringsSep "," cfg.hostsAllowSip}"} 28 - ${lib.optionalString ( 29 - cfg.hostsDenySip != [ ] 30 - ) "hosts_deny_sip = ${lib.concatStringsSep "," cfg.hostsDenySip}"} 31 - ${lib.optionalString (cfg.passwordFile != "") "proxy_auth_pwfile = ${cfg.passwordFile}"} 32 - ${cfg.extraConfig} 33 - ''; 34 - 35 - confFile = builtins.toFile "siproxd.conf" conf; 36 - 37 - in 38 - { 39 - ##### interface 40 - 41 - options = { 42 - 43 - services.siproxd = { 44 - 45 - enable = lib.mkOption { 46 - type = lib.types.bool; 47 - default = false; 48 - description = '' 49 - Whether to enable the Siproxd SIP 50 - proxy/masquerading daemon. 51 - ''; 52 - }; 53 - 54 - ifInbound = lib.mkOption { 55 - type = lib.types.str; 56 - example = "eth0"; 57 - description = "Local network interface"; 58 - }; 59 - 60 - ifOutbound = lib.mkOption { 61 - type = lib.types.str; 62 - example = "ppp0"; 63 - description = "Public network interface"; 64 - }; 65 - 66 - hostsAllowReg = lib.mkOption { 67 - type = lib.types.listOf lib.types.str; 68 - default = [ ]; 69 - example = [ 70 - "192.168.1.0/24" 71 - "192.168.2.0/24" 72 - ]; 73 - description = '' 74 - Access control list for incoming SIP registrations. 75 - ''; 76 - }; 77 - 78 - hostsAllowSip = lib.mkOption { 79 - type = lib.types.listOf lib.types.str; 80 - default = [ ]; 81 - example = [ 82 - "123.45.0.0/16" 83 - "123.46.0.0/16" 84 - ]; 85 - description = '' 86 - Access control list for incoming SIP traffic. 87 - ''; 88 - }; 89 - 90 - hostsDenySip = lib.mkOption { 91 - type = lib.types.listOf lib.types.str; 92 - default = [ ]; 93 - example = [ 94 - "10.0.0.0/8" 95 - "11.0.0.0/8" 96 - ]; 97 - description = '' 98 - Access control list for denying incoming 99 - SIP registrations and traffic. 100 - ''; 101 - }; 102 - 103 - sipListenPort = lib.mkOption { 104 - type = lib.types.int; 105 - default = 5060; 106 - description = '' 107 - Port to listen for incoming SIP messages. 108 - ''; 109 - }; 110 - 111 - rtpPortLow = lib.mkOption { 112 - type = lib.types.int; 113 - default = 7070; 114 - description = '' 115 - Bottom of UDP port range for incoming and outgoing RTP traffic 116 - ''; 117 - }; 118 - 119 - rtpPortHigh = lib.mkOption { 120 - type = lib.types.int; 121 - default = 7089; 122 - description = '' 123 - Top of UDP port range for incoming and outgoing RTP traffic 124 - ''; 125 - }; 126 - 127 - rtpTimeout = lib.mkOption { 128 - type = lib.types.int; 129 - default = 300; 130 - description = '' 131 - Timeout for an RTP stream. If for the specified 132 - number of seconds no data is relayed on an active 133 - stream, it is considered dead and will be killed. 134 - ''; 135 - }; 136 - 137 - rtpDscp = lib.mkOption { 138 - type = lib.types.int; 139 - default = 46; 140 - description = '' 141 - DSCP (differentiated services) value to be assigned 142 - to RTP packets. Allows QOS aware routers to handle 143 - different types traffic with different priorities. 144 - ''; 145 - }; 146 - 147 - sipDscp = lib.mkOption { 148 - type = lib.types.int; 149 - default = 0; 150 - description = '' 151 - DSCP (differentiated services) value to be assigned 152 - to SIP packets. Allows QOS aware routers to handle 153 - different types traffic with different priorities. 154 - ''; 155 - }; 156 - 157 - passwordFile = lib.mkOption { 158 - type = lib.types.str; 159 - default = ""; 160 - description = '' 161 - Path to per-user password file. 162 - ''; 163 - }; 164 - 165 - extraConfig = lib.mkOption { 166 - type = lib.types.lines; 167 - default = ""; 168 - description = '' 169 - Extra configuration to add to siproxd configuration. 170 - ''; 171 - }; 172 - 173 - }; 174 - 175 - }; 176 - 177 - ##### implementation 178 - 179 - config = lib.mkIf cfg.enable { 180 - 181 - users.users.siproxyd = { 182 - uid = config.ids.uids.siproxd; 183 - }; 184 - 185 - systemd.services.siproxd = { 186 - description = "SIP proxy/masquerading daemon"; 187 - wantedBy = [ "multi-user.target" ]; 188 - after = [ "network.target" ]; 189 - serviceConfig = { 190 - ExecStart = "${pkgs.siproxd}/sbin/siproxd -c ${confFile}"; 191 - }; 192 - }; 193 - 194 - }; 195 - 196 - }
-122
pkgs/applications/networking/cluster/rke2/1_29/images-versions.json
··· 1 - { 2 - "images-calico-linux-amd64-tar-gz": { 3 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-amd64.tar.gz", 4 - "sha256": "020d5dfa9f00591444e57223bd0cd236bb4ad8f0fae6e5cc19a60fa71b0096cd" 5 - }, 6 - "images-calico-linux-amd64-tar-zst": { 7 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-amd64.tar.zst", 8 - "sha256": "004cb2dbd99b15a311a68697a89f3747de9dbf643654bf52db19b5ad12f809a7" 9 - }, 10 - "images-calico-linux-arm64-tar-gz": { 11 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-arm64.tar.gz", 12 - "sha256": "df9502035dfdca214a4c4ef7353ff6a9b003e14baf81d6c34a4d72ac85837062" 13 - }, 14 - "images-calico-linux-arm64-tar-zst": { 15 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-calico.linux-arm64.tar.zst", 16 - "sha256": "acbc610d1def7f24c47832b5e93780e7cd0f8fd7ce74f8fd3ff29fab713feb32" 17 - }, 18 - "images-canal-linux-amd64-tar-gz": { 19 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-amd64.tar.gz", 20 - "sha256": "ba47ab111cda68836b36f1480d63b088d0de6a97d3ac511d1be57ed714ad0860" 21 - }, 22 - "images-canal-linux-amd64-tar-zst": { 23 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-amd64.tar.zst", 24 - "sha256": "e0e8d9757a0f5445a33ce83c4c96d5c5023d70288fa4ee34103d3375e912b2b2" 25 - }, 26 - "images-canal-linux-arm64-tar-gz": { 27 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-arm64.tar.gz", 28 - "sha256": "e1411b8a65525573f36df2587829dd6ba2565ed5961f818bcef532fd8ad64296" 29 - }, 30 - "images-canal-linux-arm64-tar-zst": { 31 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-canal.linux-arm64.tar.zst", 32 - "sha256": "7dd696507da2fbc4e6e4d7b730fc8df0cb2c216614020217d77f58d10703f11a" 33 - }, 34 - "images-cilium-linux-amd64-tar-gz": { 35 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-amd64.tar.gz", 36 - "sha256": "9107d48dcc8b1839d2f910005737327d0f3c653472caf0588f0824f77603300f" 37 - }, 38 - "images-cilium-linux-amd64-tar-zst": { 39 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-amd64.tar.zst", 40 - "sha256": "0ce5b126150c0d5f11529bb9cfb945cf2da342c06aa432e3df79cb896eceef9f" 41 - }, 42 - "images-cilium-linux-arm64-tar-gz": { 43 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-arm64.tar.gz", 44 - "sha256": "1d8870e6369bbb56cfbfa3bdcc5b81c329d021a4b2183654c301f82f4a6fe65e" 45 - }, 46 - "images-cilium-linux-arm64-tar-zst": { 47 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-cilium.linux-arm64.tar.zst", 48 - "sha256": "eb1d54688eacadc97cf77a6e6cbb039182596d0b895cebfb40e71786944f0358" 49 - }, 50 - "images-core-linux-amd64-tar-gz": { 51 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-amd64.tar.gz", 52 - "sha256": "98c366348a67572702c1332c71d81b98b14c3bf4ca4f1e0a5caedab462bf61b3" 53 - }, 54 - "images-core-linux-amd64-tar-zst": { 55 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-amd64.tar.zst", 56 - "sha256": "41616e68c3e456dea8d5e40158857c27bc786eade7a1c7dbb4621b372971f17e" 57 - }, 58 - "images-core-linux-arm64-tar-gz": { 59 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-arm64.tar.gz", 60 - "sha256": "ef4a9b0acaaac2341c54741107c653efb2610d3d443c03cb2947a7d9076415dc" 61 - }, 62 - "images-core-linux-arm64-tar-zst": { 63 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-core.linux-arm64.tar.zst", 64 - "sha256": "d7f5ee3b12399082c4b52b4513f581c257123989dff1dbba822e9343ceb92139" 65 - }, 66 - "images-flannel-linux-amd64-tar-gz": { 67 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-amd64.tar.gz", 68 - "sha256": "8c0e75adf064bd1cc37df4b6a0c01edebbd1381fcc49799b589d072f8919bb14" 69 - }, 70 - "images-flannel-linux-amd64-tar-zst": { 71 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-amd64.tar.zst", 72 - "sha256": "a3b13a559f4ea866774e93d0c9883bea7ff2eb9fb4832529e8c7e7fee924ca2b" 73 - }, 74 - "images-flannel-linux-arm64-tar-gz": { 75 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-arm64.tar.gz", 76 - "sha256": "035142ddea7ce5ad3e30a485cda3091c86bda22c1f106614327a9ab4504a9ec3" 77 - }, 78 - "images-flannel-linux-arm64-tar-zst": { 79 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-flannel.linux-arm64.tar.zst", 80 - "sha256": "28b1d7fc4544296724031007ae29415d7ee128354b8bcdc90bd13b328f3122d1" 81 - }, 82 - "images-harvester-linux-amd64-tar-gz": { 83 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-amd64.tar.gz", 84 - "sha256": "b571e832903c6f9abe94bea4c4128eb4784d11c6b4a53030e29bccdb6205338d" 85 - }, 86 - "images-harvester-linux-amd64-tar-zst": { 87 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-amd64.tar.zst", 88 - "sha256": "b464b22d3fcd708f09b659f730773f6ca9340dc0b5c5e703ea9b69af4c9919b3" 89 - }, 90 - "images-harvester-linux-arm64-tar-gz": { 91 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-arm64.tar.gz", 92 - "sha256": "99d014012b54a64bd9c0387fc81615bcc6a9095dca87ddf256a4d14cdf93c511" 93 - }, 94 - "images-harvester-linux-arm64-tar-zst": { 95 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-harvester.linux-arm64.tar.zst", 96 - "sha256": "1e46a193719b2e1394f133b071a8bfe60081160c929d38973d34b600380a2080" 97 - }, 98 - "images-multus-linux-amd64-tar-gz": { 99 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-amd64.tar.gz", 100 - "sha256": "ac1e5082d27473d81d7fa8f7765e4023878ca92c27878ed0cd99accfb8d8b38e" 101 - }, 102 - "images-multus-linux-amd64-tar-zst": { 103 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-amd64.tar.zst", 104 - "sha256": "087148184e0e06ef58111ac336b58ad62c061189d0d0dd7c316a842732449c05" 105 - }, 106 - "images-multus-linux-arm64-tar-gz": { 107 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-arm64.tar.gz", 108 - "sha256": "49d1914afe109bd6b1e5c56435cb3cd4ed79ae4688f11ade33b37f4e9a592f77" 109 - }, 110 - "images-multus-linux-arm64-tar-zst": { 111 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-multus.linux-arm64.tar.zst", 112 - "sha256": "f14ab45b4d315ea27787f4741a0eb4bc0bff7a9ecb498da5694ce991097becd8" 113 - }, 114 - "images-vsphere-linux-amd64-tar-gz": { 115 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.gz", 116 - "sha256": "3ce2832234efde4dfc61d74debb380ac245ec9828aa7613e8ff9204207038069" 117 - }, 118 - "images-vsphere-linux-amd64-tar-zst": { 119 - "url": "https://github.com/rancher/rke2/releases/download/v1.29.15%2Brke2r1/rke2-images-vsphere.linux-amd64.tar.zst", 120 - "sha256": "b182062f8eff3e71d6e8afea8b5e2cbadfa3d02d092744cd05673803cb464746" 121 - } 122 - }
-12
pkgs/applications/networking/cluster/rke2/1_29/versions.nix
··· 1 - { 2 - rke2Version = "1.29.15+rke2r1"; 3 - rke2Commit = "c228232895f83b6c3e17a9741e0c8d8e4439894d"; 4 - rke2TarballHash = "sha256-ZvujSxuTsM6oBNEehQSMmCkbSTsp8sBZd00vwJGx5Lk="; 5 - rke2VendorHash = "sha256-PhJgHvVCZAxWK78cn0pURC/Oy63/V41k0ZFn4sveCPY="; 6 - k8sImageTag = "v1.29.15-rke2r1-build20250312"; 7 - etcdVersion = "v3.5.19-k3s1-build20250306"; 8 - pauseVersion = "3.6"; 9 - ccmVersion = "v1.29.10-0.20241016053521-9510ac25fefb-build20241016"; 10 - dockerizedVersion = "v1.29.15-rke2r1"; 11 - imagesVersions = with builtins; fromJSON (readFile ./images-versions.json); 12 - }
-10
pkgs/applications/networking/cluster/rke2/default.nix
··· 5 5 extraArgs = builtins.removeAttrs args [ "callPackage" ]; 6 6 in 7 7 rec { 8 - rke2_1_29 = common ( 9 - (import ./1_29/versions.nix) 10 - // { 11 - updateScript = [ 12 - ./update-script.sh 13 - "29" 14 - ]; 15 - } 16 - ) extraArgs; 17 - 18 8 rke2_1_30 = common ( 19 9 (import ./1_30/versions.nix) 20 10 // {
+2 -2
pkgs/by-name/an/ansible-lint/package.nix
··· 8 8 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "ansible-lint"; 11 - version = "25.4.0"; 11 + version = "25.5.0"; 12 12 pyproject = true; 13 13 14 14 src = fetchPypi { 15 15 inherit version; 16 16 pname = "ansible_lint"; 17 - hash = "sha256-8vKzGtGZklsjQ/ZgVS+5Rolw8WwsXVfan+rnDsTuyn0="; 17 + hash = "sha256-QYJSDyM+70JIvEz0tgdOJc2vW+Ic+b6USqvIXfVAfpw="; 18 18 }; 19 19 20 20 postPatch = ''
+43
pkgs/by-name/bz/bzmenu/package.nix
··· 1 + { 2 + dbus, 3 + fetchFromGitHub, 4 + lib, 5 + pkg-config, 6 + rustPlatform, 7 + }: 8 + 9 + rustPlatform.buildRustPackage rec { 10 + pname = "bzmenu"; 11 + version = "0.2.1"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "e-tho"; 15 + repo = "bzmenu"; 16 + tag = "v${version}"; 17 + hash = "sha256-42ZiENkqFXFhtqn26r9AIsG9sE+W0nGxm2zKdcbY5ss="; 18 + }; 19 + 20 + cargoHash = "sha256-DvnWw4yH4ghFb368cms981pENez0zTgvpMghDTrah50="; 21 + 22 + nativeBuildInputs = [ 23 + pkg-config 24 + ]; 25 + 26 + buildInputs = [ 27 + dbus 28 + ]; 29 + 30 + meta = { 31 + homepage = "https://github.com/e-tho/bzmenu"; 32 + description = "Launcher-driven Bluetooth manager for Linux"; 33 + longDescription = '' 34 + Use `bzmenu --launcher <launcher command>` 35 + Supported launchers are: `dmenu`, `fuzzel`, `rofi`, `walker` and `custom` with `stdin` 36 + for details refer to https://github.com/e-tho/bzmenu/blob/main/README.md#usage 37 + ''; 38 + mainProgram = "bzmenu"; 39 + platforms = lib.platforms.linux; 40 + license = lib.licenses.gpl3Plus; 41 + maintainers = with lib.maintainers; [ vuimuich ]; 42 + }; 43 + }
+10 -10
pkgs/by-name/dn/dnsproxy/package.nix
··· 4 4 fetchFromGitHub, 5 5 }: 6 6 7 - buildGoModule rec { 7 + buildGoModule (finalAttrs: { 8 8 pname = "dnsproxy"; 9 - version = "0.75.5"; 9 + version = "0.75.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "AdguardTeam"; 13 13 repo = "dnsproxy"; 14 - rev = "v${version}"; 15 - hash = "sha256-VkvYh4ksQkxhcEH0ZaaUT2h1L0Zw44s8hoDiZjdEMx0="; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-zMSwAbNwomb2XXOtnXJvO+ehUPYz0F8lzRkhhHhk3QQ="; 16 16 }; 17 17 18 - vendorHash = "sha256-ev05aQ+A67BT+Xtt7HVSTqmmqN/DgFp56AHWDcbkoGE="; 18 + vendorHash = "sha256-k+F85fPzIvSr/M/oRkO7kmXUStN+zWpvo9JJIKlgSFQ="; 19 19 20 20 ldflags = [ 21 21 "-s" 22 22 "-w" 23 23 "-X" 24 - "github.com/AdguardTeam/dnsproxy/internal/version.version=${version}" 24 + "github.com/AdguardTeam/dnsproxy/internal/version.version=${finalAttrs.version}" 25 25 ]; 26 26 27 27 # Development tool dependencies; not part of the main project ··· 29 29 30 30 doCheck = false; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support"; 34 34 homepage = "https://github.com/AdguardTeam/dnsproxy"; 35 - license = licenses.asl20; 36 - maintainers = with maintainers; [ 35 + license = lib.licenses.asl20; 36 + maintainers = with lib.maintainers; [ 37 37 contrun 38 38 diogotcorreia 39 39 ]; 40 40 mainProgram = "dnsproxy"; 41 41 }; 42 - } 42 + })
+3 -3
pkgs/by-name/fl/flyctl/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "flyctl"; 12 - version = "0.3.132"; 12 + version = "0.3.140"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "superfly"; 16 16 repo = "flyctl"; 17 17 rev = "v${version}"; 18 - hash = "sha256-xuPcJchATGlGZR4dwWKp5GXlo7O1Xv2u+gDzgn1668I="; 18 + hash = "sha256-YlpK0gRHk9LbzDwSSJAc05ZYHRWPZ67Qi6SxImNzUTE="; 19 19 }; 20 20 21 - vendorHash = "sha256-9E6Kd9TV8TplL4KU47hhOIPuO/hm0T3aaMK/rEMBUU4="; 21 + vendorHash = "sha256-mOPOVVG7c3PI/ltlwHBzNGqSyj6nMIvemYObrWezrqQ="; 22 22 23 23 subPackages = [ "." ]; 24 24
+3 -3
pkgs/by-name/fo/foundry/package.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "foundry"; 16 - version = "1.2.2"; 16 + version = "1.2.3"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "foundry-rs"; 20 20 repo = "foundry"; 21 21 tag = "v${version}"; 22 - hash = "sha256-XZHlBTFmdt4RL/JNGbHDI9XLwDRHoEr3KNCTq5oKexQ="; 22 + hash = "sha256-1mZsz0tCvf943WLk7J+AJfPSl/yc84qlvMaQwFhM2ss="; 23 23 }; 24 24 25 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-qa8mnLqu1X8Rs5ouxXgAiPxDwuXqSY896SCQl8Me5cU="; 26 + cargoHash = "sha256-q0iNyGabqJJcxVLzU8CZpkxxSYOCfuc7ewiSQcQIzSY="; 27 27 28 28 nativeBuildInputs = [ 29 29 pkg-config
+4 -4
pkgs/by-name/gi/gitea/package.nix
··· 20 20 pname = "gitea-frontend"; 21 21 inherit (gitea) src version; 22 22 23 - npmDepsHash = "sha256-5i3aB1QgH5NK5yDZySFlraVGU+Kh6J4Y2zvFqJX5kJs="; 23 + npmDepsHash = "sha256-+o7/A+Pqr8LZi+q0fOajQgLkWqquBrJSf0dpEXEJtwM="; 24 24 25 25 # use webpack directly instead of 'make frontend' as the packages are already installed 26 26 buildPhase = '' ··· 35 35 in 36 36 buildGoModule rec { 37 37 pname = "gitea"; 38 - version = "1.23.8"; 38 + version = "1.24.0"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "go-gitea"; 42 42 repo = "gitea"; 43 43 tag = "v${gitea.version}"; 44 - hash = "sha256-79GSHJozNlzBkddeyKX36D/w73loEN28fNSbcMVhgxQ="; 44 + hash = "sha256-lKeqoNL6RMjhm9egk6upbovJaWwm3r2kxi0Z9bjNxtI="; 45 45 }; 46 46 47 47 proxyVendor = true; 48 48 49 - vendorHash = "sha256-wdrFa+6E1qTW9PBXr7ROgBQn3nfgxZF7Z47yk61Iqvs="; 49 + vendorHash = "sha256-nC8y3skBhnOo7Ki9nc7Ni6UpheArB8bGK4AR/1Gdjr0="; 50 50 51 51 outputs = [ 52 52 "out"
+2 -2
pkgs/by-name/in/incus-ui-canonical/package.nix
··· 20 20 in 21 21 stdenv.mkDerivation rec { 22 22 pname = "incus-ui-canonical"; 23 - version = "0.15.3"; 23 + version = "0.15.4"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "zabbly"; 27 27 repo = "incus-ui-canonical"; 28 28 # only use tags prefixed by incus- they are the tested fork versions 29 29 tag = "incus-${version}"; 30 - hash = "sha256-FsDdALcIXJFo0ScOA8YEzulefp8IfOSi2ZClrtcPo24="; 30 + hash = "sha256-kY7FMZbwP5D5EJfYH1/ptgKdCceduk05fjVdwtOgUNk="; 31 31 }; 32 32 33 33 offlineCache = fetchYarnDeps {
+2 -2
pkgs/by-name/in/intel-graphics-compiler/package.nix
··· 42 42 in 43 43 stdenv.mkDerivation rec { 44 44 pname = "intel-graphics-compiler"; 45 - version = "2.10.8"; 45 + version = "2.11.7"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "intel"; 49 49 repo = "intel-graphics-compiler"; 50 50 tag = "v${version}"; 51 - hash = "sha256-BFEl2LiaGRZXnQtOTEY/86ymKuQO3QN4HPbwHsdSZMs="; 51 + hash = "sha256-bGH+cgWI3bRgOhSBgQUrHPiCQ68EfAxG+iM6vs8VjhU="; 52 52 }; 53 53 54 54 postPatch = ''
+8 -14
pkgs/by-name/li/libe57format/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "libe57format"; 12 - version = "3.1.1"; 12 + version = "3.2.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "asmaloney"; 16 16 repo = "libE57Format"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-bOuWh9Nkxva2v0M6+vnAya8EW/G3WQePxHakQt8T9NE="; 18 + hash = "sha256-GyzfJshL2cOTEDp8eR0sqQq4GSnOdskiLi5mY1a2KW0="; 19 19 fetchSubmodules = true; # for submodule-vendored libraries such as `gtest` 20 20 }; 21 21 ··· 23 23 libE57Format-test-data_src = fetchFromGitHub { 24 24 owner = "asmaloney"; 25 25 repo = "libE57Format-test-data"; 26 - rev = "4960564a732c6444c50dfae5b2273e68837399cd"; 27 - hash = "sha256-k26yVbYSQJ3EMgcpjm35N1OAxarFmfMvzfTN2Hdyu8c="; 26 + rev = "2171612112b06afd4fec5babe8837be69d910149"; 27 + hash = "sha256-JARpxp6Z2VioBfY0pZSyQU2mG/EllbaF3qteSFM9u8o="; 28 28 }; 29 29 30 30 CXXFLAGS = [ 31 31 # GCC 13: error: 'int16_t' has not been declared in 'std' 32 32 "-include cstdint" 33 - ]; 34 - 35 - patches = [ 36 - # TODO: Remove with the next release: https://github.com/asmaloney/libE57Format/pull/299 37 - (fetchpatch { 38 - name = "libE57Format-Dont-force-warnings-as-errors-when-building-self.patch"; # https://github.com/apache/thrift/pull/2726 39 - url = "https://github.com/asmaloney/libE57Format/commit/66bb5af15937b4c10a7f412ca4d1673f42bbad28.patch"; 40 - hash = "sha256-2cNURjMLP0TijYY5gbuWLE7H/PlMW936wAeOqJ/w9C0="; 41 - }) 42 - 43 33 ]; 44 34 45 35 nativeBuildInputs = [ ··· 41 51 ]; 42 52 43 53 cmakeFlags = [ 54 + # Without this, LTO will be enabled, which seems to cause 55 + # errors when consumers try to link the `.a` file, see: 56 + # https://github.com/asmaloney/libE57Format/pull/313#issuecomment-2907797367 57 + "-DE57_RELEASE_LTO=OFF" 44 58 # See https://github.com/asmaloney/libE57Format/blob/9372bdea8db2cc0c032a08f6d655a53833d484b8/test/README.md 45 59 ( 46 60 if finalAttrs.finalPackage.doCheck then
+1
pkgs/by-name/li/libfprint-focaltech-2808-a658/package.nix
··· 100 100 maintainers = [ lib.maintainers.imsick ]; 101 101 platforms = [ "x86_64-linux" ]; 102 102 sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 103 + broken = true; # needs older version of fprintd (v1.94.4) 103 104 }; 104 105 }
+38
pkgs/by-name/mc/mcp-proxy/package.nix
··· 1 + { 2 + lib, 3 + python3Packages, 4 + fetchFromGitHub, 5 + }: 6 + python3Packages.buildPythonApplication rec { 7 + pname = "mcp-proxy"; 8 + version = "0.7.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "sparfenyuk"; 12 + repo = "mcp-proxy"; 13 + tag = "v${version}"; 14 + hash = "sha256-xHy+IwnUoyICSTusqTzGf/kOvT0FvJYcTT9Do0C5DiY="; 15 + }; 16 + 17 + pyproject = true; 18 + 19 + build-system = [ python3Packages.setuptools ]; 20 + 21 + dependencies = with python3Packages; [ 22 + uvicorn 23 + mcp 24 + ]; 25 + 26 + nativeCheckInputs = with python3Packages; [ 27 + pytestCheckHook 28 + pytest-asyncio 29 + ]; 30 + 31 + meta = { 32 + description = "MCP server which proxies other MCP servers from stdio to SSE or from SSE to stdio"; 33 + homepage = "https://github.com/sparfenyuk/mcp-proxy"; 34 + mainProgram = "mcp-proxy"; 35 + license = lib.licenses.mit; 36 + maintainers = with lib.maintainers; [ keyruu ]; 37 + }; 38 + }
+4 -4
pkgs/by-name/mi/microsoft-edge/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 3 + stdenvNoCC, 4 4 fetchurl, 5 5 makeWrapper, 6 6 patchelf, 7 + bintools, 7 8 dpkg, 8 9 9 10 # Linked dynamic libraries. ··· 177 176 ++ lib.optionals libvaSupport [ libva ]; 178 177 in 179 178 180 - stdenv.mkDerivation (finalAttrs: { 179 + stdenvNoCC.mkDerivation (finalAttrs: { 181 180 pname = "microsoft-edge"; 182 181 version = "137.0.3296.68"; 183 182 ··· 273 272 274 273 for elf in $out/share/microsoft/$appname/{msedge,msedge-sandbox,msedge_crashpad_handler}; do 275 274 patchelf --set-rpath $rpath $elf 276 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $elf 275 + patchelf --set-interpreter ${bintools.dynamicLinker} $elf 277 276 done 278 277 279 278 runHook postInstall ··· 290 289 maintainers = with lib.maintainers; [ 291 290 cholli 292 291 ulrikstrid 293 - emaryn 294 292 maeve-oake 295 293 leleuvilela 296 294 ];
+3
pkgs/by-name/nt/ntl/package.nix
··· 80 80 teams = [ teams.sage ]; 81 81 license = licenses.gpl2Plus; 82 82 platforms = platforms.all; 83 + # Does not cross compile 84 + # https://github.com/libntl/ntl/issues/8 85 + broken = !(stdenv.buildPlatform.canExecute stdenv.hostPlatform); 83 86 }; 84 87 }
+3 -3
pkgs/by-name/or/orchard/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "orchard"; 10 - version = "0.33.2"; 10 + version = "0.33.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cirruslabs"; 14 14 repo = "orchard"; 15 15 rev = version; 16 - hash = "sha256-yiCMnP73C5MJLYjnZfqcKtdSzPyL/9WlAtylMXDl4E8="; 16 + hash = "sha256-bkJ2qvhMs3kSx4p46wgo8ZabqNNRYRE5jwTniBuobLA="; 17 17 # populate values that require us to use git. By doing this in postFetch we 18 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 19 leaveDotGit = true; ··· 24 24 ''; 25 25 }; 26 26 27 - vendorHash = "sha256-fU2TXUtcXmjswlEbSsbCTOaC5rvtctHbTKbR7zIwP/g="; 27 + vendorHash = "sha256-D1zTKHioavIpWwS0i/uP91hK+Cxg9Git6DQ0iCowcXM="; 28 28 29 29 nativeBuildInputs = [ installShellFiles ]; 30 30
+2 -2
pkgs/by-name/rs/rss-bridge/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "rss-bridge"; 11 - version = "2025-01-26"; 11 + version = "2025-06-03"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "RSS-Bridge"; 15 15 repo = "rss-bridge"; 16 16 rev = version; 17 - sha256 = "sha256-b8mBojtNbQ9QSsFT2PTwyHJIOhoOpTxd6c2ldMy/g5g="; 17 + sha256 = "sha256-S9TSTUwuScOcLbEpGgET1zzH1WlO1IMUOiwzMTsA65s="; 18 18 }; 19 19 20 20 installPhase = ''
+2 -2
pkgs/by-name/sh/shotwell/package.nix
··· 40 40 41 41 stdenv.mkDerivation (finalAttrs: { 42 42 pname = "shotwell"; 43 - version = "0.32.10"; 43 + version = "0.32.13"; 44 44 45 45 src = fetchurl { 46 46 url = "mirror://gnome/sources/shotwell/${lib.versions.majorMinor finalAttrs.version}/shotwell-${finalAttrs.version}.tar.xz"; 47 - sha256 = "sha256-JuRaYbVDGwlv/NF28RW9B76ad6aDNYmVQhBuGeB/QA4="; 47 + sha256 = "sha256-vdPoT2AuL8frQoQ8kKJes6pJ+y/7de21HbAb0pBdvR4="; 48 48 }; 49 49 50 50 nativeBuildInputs = [
-66
pkgs/by-name/sp/space-orbit/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - libGLU, 6 - libGL, 7 - libXi, 8 - libXt, 9 - libXext, 10 - libX11, 11 - libXmu, 12 - libglut, 13 - }: 14 - 15 - stdenv.mkDerivation rec { 16 - pname = "space-orbit"; 17 - version = "1.01"; 18 - patchversion = "9"; 19 - 20 - buildInputs = [ 21 - libGLU 22 - libGL 23 - libXi 24 - libXt 25 - libXext 26 - libX11 27 - libXmu 28 - libglut 29 - ]; 30 - 31 - src = fetchurl { 32 - url = "mirror://debian/pool/main/s/space-orbit/space-orbit_${version}.orig.tar.gz"; 33 - sha256 = "1kx69f9jqnfzwjh47cl1df8p8hn3bnp6bznxnb6c4wx32ijn5gri"; 34 - }; 35 - 36 - patches = [ 37 - (fetchurl { 38 - url = "mirror://debian/pool/main/s/space-orbit/space-orbit_${version}-${patchversion}.diff.gz"; 39 - sha256 = "1v3s97day6fhv08l2rn81waiprhi1lfyjjsj55axfh6n6zqfn1w2"; 40 - }) 41 - ]; 42 - 43 - preBuild = '' 44 - cd src 45 - sed -e 's@/usr/share/games/orbit/@'$out'/dump/@g' -i *.c 46 - sed -e '/DIR=/d; s/-lesd//; s/-DESD//;' -i Makefile 47 - ''; 48 - 49 - installPhase = '' 50 - mkdir -p $out/bin 51 - cp -r .. $out/dump 52 - cat >$out/bin/space-orbit <<EOF 53 - #! ${stdenv.shell} 54 - exec $out/dump/orbit "\$@" 55 - EOF 56 - chmod a+x $out/bin/space-orbit 57 - ''; 58 - 59 - meta = with lib; { 60 - broken = stdenv.hostPlatform.isDarwin; 61 - description = "Space combat simulator"; 62 - mainProgram = "space-orbit"; 63 - license = licenses.gpl2Plus; 64 - platforms = platforms.all; 65 - }; 66 - }
+2 -2
pkgs/by-name/sp/spirv-llvm-translator/package.nix
··· 43 43 } 44 44 else if llvmMajor == "15" then 45 45 rec { 46 - version = "15.0.11"; 46 + version = "15.0.12"; 47 47 rev = "v${version}"; 48 - hash = "sha256-q4WhUaBDw0cnv1eqC6wSvrApHKvyg5/4QetybDLQkEw="; 48 + hash = "sha256-u3cy8Nk9Dvt5VeSP46glvmSv1sQp+lUl9rY6pPTqtmY="; 49 49 } 50 50 else if llvmMajor == "14" then 51 51 {
+2 -2
pkgs/by-name/th/thrift-ls/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "thrift-ls"; 9 - version = "0.2.7"; 9 + version = "0.2.9"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "joyme123"; 13 13 repo = "thrift-ls"; 14 14 rev = "v${version}"; 15 - hash = "sha256-QX4ChPjHIY0GtjqmZH5Q4veC+VnMntYIQvwwSds8UUo="; 15 + hash = "sha256-Gmqm1D+zcXtqFEraHjivqIqFz0AZCJd3pnH4zKE/jxw="; 16 16 }; 17 17 18 18 vendorHash = "sha256-SGCJ12BxjFUQ7bnaNY0bvrrtm2qNNrwYKKfNEi1lPco=";
+2 -2
pkgs/desktops/pantheon/apps/elementary-files/default.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "elementary-files"; 29 - version = "7.1.1"; 29 + version = "7.1.2"; 30 30 31 31 outputs = [ 32 32 "out" ··· 37 37 owner = "elementary"; 38 38 repo = "files"; 39 39 rev = version; 40 - hash = "sha256-GJ+OYe2DJ9VIMkwobQJxD1bGoV8k6ALkx9RpT3Cazis="; 40 + hash = "sha256-7K9XXTXQMoHGV7yI23Gtbw7R1NRyQgFO45haXHAuUxw="; 41 41 }; 42 42 43 43 nativeBuildInputs = [
+13 -4
pkgs/development/ocaml-modules/benchmark/default.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "benchmark"; 9 - version = "1.6"; 9 + version = "1.7"; 10 + 11 + minimalOCamlVersion = "4.03"; 10 12 11 13 src = fetchurl { 12 - url = "https://github.com/Chris00/ocaml-benchmark/releases/download/${version}/benchmark-${version}.tbz"; 13 - hash = "sha256-Mw19cYya/MEy52PVRYE/B6TnqCWw5tEz9CUrUfKAnPA="; 14 + url = "https://github.com/Chris00/ocaml-benchmark/releases/download/v${version}/benchmark-${version}.tbz"; 15 + hash = "sha256-Aij7vJzamNWQfjLeGgENlIp6Il8+Wc9hsahr4eDGs68="; 14 16 }; 15 17 16 18 meta = { 17 19 homepage = "https://github.com/Chris00/ocaml-benchmark"; 18 20 description = "Benchmark running times of code"; 19 - license = lib.licenses.lgpl21; 21 + longDescription = '' 22 + This module provides a set of tools to measure the running times of 23 + your functions and to easily compare the results. A statistical test 24 + is used to determine whether the results truly differ. 25 + ''; 26 + changelog = "https://raw.githubusercontent.com/Chris00/ocaml-benchmark/refs/tags/v${version}/CHANGES.md"; 27 + license = lib.licenses.lgpl3; 28 + maintainers = with lib.maintainers; [ momeemt ]; 20 29 }; 21 30 }
+32
pkgs/development/tcl-modules/dbus/default.nix
··· 1 + { 2 + lib, 3 + mkTclDerivation, 4 + fetchzip, 5 + pkg-config, 6 + dbus, 7 + }: 8 + 9 + mkTclDerivation rec { 10 + pname = "dbus"; 11 + version = "4.1"; 12 + 13 + src = fetchzip { 14 + url = "https://chiselapp.com/user/schelte/repository/dbus/uv/dbus-${version}.tar.gz"; 15 + hash = "sha256-8VIw475Q9kRh6UV6FxWCXKLKasqM1z58ed0rMgzEX3I="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + pkg-config 20 + ]; 21 + 22 + buildInputs = [ 23 + dbus 24 + ]; 25 + 26 + meta = { 27 + description = "DBus bindings for Tcl"; 28 + homepage = "https://chiselapp.com/user/schelte/repository/dbus/home"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ fgaz ]; 31 + }; 32 + }
+2 -2
pkgs/development/tools/pnpm/default.nix
··· 16 16 hash = "sha256-z4anrXZEBjldQoam0J1zBxFyCsxtk+nc6ax6xNxKKKc="; 17 17 }; 18 18 "10" = { 19 - version = "10.11.1"; 20 - hash = "sha256-IR6ZkBSElcn8MLflg5b37tqD2SQ+t1QH6k+GUPsWH3w="; 19 + version = "10.12.1"; 20 + hash = "sha256-iJusRw7JPMw3ZEiKGda6j5xkitXlCppuS+N2il3jh6M="; 21 21 }; 22 22 }; 23 23
+1
pkgs/os-specific/linux/cpupower/default.nix
··· 37 37 man = "share/man"; 38 38 include = "include"; 39 39 lib = "lib"; 40 + libexec = "libexec"; 40 41 locale = "share/locale"; 41 42 doc = "share/doc/cpupower"; 42 43 conf = "etc";
+3 -1
pkgs/top-level/aliases.nix
··· 1690 1690 riko4 = throw "'riko4' has been removed as it was unmaintained, failed to build and dependend on outdated libraries"; # Added 2025-05-18 1691 1691 rippled = throw "rippled has been removed as it was broken and had not been updated since 2022"; # Added 2024-11-25 1692 1692 rippled-validator-keys-tool = throw "rippled-validator-keys-tool has been removed as it was broken and had not been updated since 2022"; # Added 2024-11-25 1693 + rke2_1_29 = throw "'rke2_1_29' has been removed from nixpkgs as it has reached end of life"; # Added 2025-05-05 1693 1694 rke2_testing = throw "'rke2_testing' has been removed from nixpkgs as the RKE2 testing channel no longer serves releases"; # Added 2025-06-02 1694 1695 rl_json = tclPackages.rl_json; # Added 2025-05-03 1695 1696 rockbox_utility = rockbox-utility; # Added 2022-03-17 ··· 1762 1761 signal-desktop-source = lib.warnOnInstantiate "'signal-desktop-source' is now exposed at 'signal-desktop'." signal-desktop; # Added 2025-04-16 1763 1762 silc_server = throw "'silc_server' has been removed because it is unmaintained"; # Added 2025-05-12 1764 1763 silc_client = throw "'silc_client' has been removed because it is unmaintained"; # Added 2025-05-12 1765 - siproxd = throw "'siproxd' has been as it was unmaintained and incompatible with newer libosip versions"; # Added 2025-05-18 1764 + siproxd = throw "'siproxd' has been removed as it was unmaintained and incompatible with newer libosip versions"; # Added 2025-05-18 1766 1765 sheesy-cli = throw "'sheesy-cli' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 1767 1766 shout = nodePackages.shout; # Added unknown; moved 2024-10-19 1768 1767 sky = throw "'sky' has been removed because its upstream website disappeared"; # Added 2024-07-21 ··· 1782 1781 SP800-90B_EntropyAssessment = sp800-90b-entropyassessment; # Added on 2024-06-12 1783 1782 SPAdes = spades; # Added 2024-06-12 1784 1783 spark2014 = gnatprove; # Added 2024-02-25 1784 + space-orbit = throw "'space-orbit' has been removed because it is unmaintained; Debian upstream stopped tracking it in 2011."; # Added 2025-06-08 1785 1785 spatialite_gui = throw "spatialite_gui has been renamed to spatialite-gui"; # Added 2025-01-12 1786 1786 spatialite_tools = throw "spatialite_tools has been renamed to spatialite-tools"; # Added 2025-02-06 1787 1787
-1
pkgs/top-level/all-packages.nix
··· 13839 13839 callPackage ../applications/networking/instant-messengers/ripcord/darwin.nix { }; 13840 13840 13841 13841 inherit (callPackage ../applications/networking/cluster/rke2 { }) 13842 - rke2_1_29 13843 13842 rke2_1_30 13844 13843 rke2_1_31 13845 13844 rke2_1_32
+5
pkgs/top-level/tcl-packages.nix
··· 7 7 newScope, 8 8 tcl, 9 9 tk, 10 + pkgs, 10 11 }: 11 12 12 13 lib.makeScope newScope ( ··· 17 16 18 17 critcl = self.callPackage ../development/tcl-modules/critcl { 19 18 tcllib = self.tcllib.override { withCritcl = false; }; 19 + }; 20 + 21 + dbus = self.callPackage ../development/tcl-modules/dbus { 22 + inherit (pkgs) dbus; 20 23 }; 21 24 }) 22 25 )