Commit Graph
1033599 Commits
Author SHA1 Message Date
yayaandGitHub 4d98552843 electron_38-bin,electron-chromedriver_38: drop (#539209) 2026-07-08 13:35:57 +00:00
pancho horrillo b1ba85535d go-mockery: fix env.CGO_ENABLED set to ""
instead of 0.

Note that the official docs specify that only 1 or 0 are valid:
https://pkg.go.dev/cmd/cgo and look for CGO_ENABLED.

If set to 'false', it gets rendered as an empty string:

$ nix derivation show nixpkgs#go-mockery | jq '.derivations[].env | {CGO_ENABLED}'
{
  "CGO_ENABLED": ""
}
$ nix derivation show nixpkgs#go-mockery_2 | jq '.derivations[].env | {CGO_ENABLED}'
{
  "CGO_ENABLED": ""
}

which has the same effect as not defining `env.CGO_ENABLED` at all,
i.e., it generates a dynamically linked executable:

$ nix shell nixpkgs#go-mockery
$ ldd $(which mockery)
	linux-vdso.so.1 (0x00007c440bdd3000)
	libresolv.so.2 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libresolv.so.2 (0x00007c440bdb8000)
	libpthread.so.0 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libpthread.so.0 (0x00007c440bdb3000)
	libc.so.6 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libc.so.6 (0x00007c440ba00000)
	/nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/ld-linux-x86-64.so.2 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib64/ld-linux-x86-64.so.2 (0x00007c440bdd5000)

ditto for v2:

$ nix shell nixpkgs#go-mockery_2
$ ldd $(which mockery)
	linux-vdso.so.1 (0x000077377575f000)
	libresolv.so.2 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libresolv.so.2 (0x0000773775744000)
	libpthread.so.0 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libpthread.so.0 (0x000077377573f000)
	libc.so.6 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libc.so.6 (0x0000773775400000)
	/nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/ld-linux-x86-64.so.2 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib64/ld-linux-x86-64.so.2 (0x0000773775761000)

whereas after setting it to 0:

$ nix derivation show .#go-mockery | jq '.derivations[].env | {CGO_ENABLED}'
{
  "CGO_ENABLED": "0"
}
$ nix derivation show .#go-mockery_2 | jq '.derivations[].env | {CGO_ENABLED}'
{
  "CGO_ENABLED": "0"
}

and now the executables are not dynamic, as intended:

$ nix shell .#go-mockery
$ ldd $(which mockery)
	not a dynamic executable

$ nix shell .#go-mockery_2
$ ldd $(which mockery)
	not a dynamic executable
2026-07-08 15:33:43 +02:00
R. Ryantm 6a60d2a13a wpprobe: 0.12.3 -> 0.12.4 2026-07-08 13:33:41 +00:00
Martin WeineltandGitHub eb2f33a146 home-assistant-custom-lovelace-modules.material-you-utilities: 2.1.16 -> 2.1.19 (#538587) 2026-07-08 13:33:06 +00:00
R. Ryantm ef9d48c0ef paretosecurity: 0.3.20 -> 0.3.21 2026-07-08 13:32:42 +00:00
nixpkgs-ci[bot]andGitHub 0db3c17b30 goda: 0.9.3 -> 0.9.4 (#539575) 2026-07-08 13:29:54 +00:00
Jannik PunkeandJannik Punke 7193d4e0b0 python3Packages.weasyprint: 68.1-unstable-2026-05-18 -> 69.0
Release notes: https://github.com/Kozea/WeasyPrint/releases#release-v69.0
2026-07-08 15:27:42 +02:00
R. Ryantm 07568bbec5 prometheus-postgres-exporter: 0.20.0 -> 0.20.1 2026-07-08 13:25:49 +00:00
R. Ryantm fe9a6eef96 terraform-providers.bpg_proxmox: 0.111.0 -> 0.111.1 2026-07-08 13:10:42 +00:00
Martin WeineltandGitHub 5402e25e14 pretalx: 2026.2.0 -> 2026.2.1 (#539600) 2026-07-08 13:09:42 +00:00
Arne KellerandGitHub 7f2d7036b2 discordchatexporter-desktop: support aarch64-linux (#496636) 2026-07-08 13:09:07 +00:00
R. Ryantm 281cc50fe0 bruijn: 0-unstable-2026-05-03 -> 0-unstable-2026-07-05 2026-07-08 13:08:17 +00:00
pancho horrillo 3e9fc0661b diun: fix env.CGO_ENABLED set to "" instead of 0
env.CGO_ENABLED should be either 1 or 0, not a boolean.

If set to false, it is then rendered as an empty string,
which can be verified by running

$ nix derivation show nixpkgs#diun | jq '.derivations[].env | {CGO_ENABLED}'
{
  "CGO_ENABLED": ""
}

Also, the executable is, in fact, a dynamic one:
$ nix shell nixpkgs#diun
$ which diun
/nix/store/q8mc73sp6nz113m7ggb2m10r4brak82y-diun-4.33.0/bin/diun
$ ldd $(which diun)
	linux-vdso.so.1 (0x000076b5e6e4e000)
	libresolv.so.2 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libresolv.so.2 (0x000076b5e6e33000)
	libpthread.so.0 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libpthread.so.0 (0x000076b5e6e2e000)
	libc.so.6 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/libc.so.6 (0x000076b5e6c00000)
	/nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib/ld-linux-x86-64.so.2 => /nix/store/8kvxvr3pmsypxiypq4g8zy13glnfr7nx-glibc-2.42-67/lib64/ld-linux-x86-64.so.2 (0x000076b5e6e50000)

After setting it to 0,
$ nix derivation show .#diun | jq '.derivations[].env | {CGO_ENABLED}'
{
  "CGO_ENABLED": "0"
}

and the executable:
$ ldd $(which diun)
	not a dynamic executable

which is the intended effect.
2026-07-08 15:08:16 +02:00
Gaetan Lepage 0c6b89df83 python3Packages.pylance: re-enable torch compile tests on darwin 2026-07-08 13:04:59 +00:00
Gaetan Lepage 10fee97c23 python3Packages.torch: cleanup dependencies 2026-07-08 13:04:59 +00:00
R. Ryantm 75e08ee902 shader-slang: 2026.12 -> 2026.12.2 2026-07-08 13:04:51 +00:00
Gaétan LepageandGitHub 34c244bed9 python3Packages.skrl: add missing test dependency hypothesis (#539584) 2026-07-08 12:58:28 +00:00
Martin Weinelt 1ed5aba226 nixos/pretix: fix manual eval 2026-07-08 14:58:11 +02:00
Martin Weinelt 7f136820b5 pretalx: 2026.2.0 -> 2026.2.1
https://docs.pretalx.org/changelog/v2026.2.1/
2026-07-08 14:54:56 +02:00
nixpkgs-ci[bot]andGitHub a86db492a0 qownnotes: 26.6.9 -> 26.7.3 (#539574) 2026-07-08 12:51:17 +00:00
Masum RezaandGitHub d1362d8e6f androidStudioPackages.canary: 2026.1.3.2 -> 2026.1.3.3 (#539543) 2026-07-08 12:48:31 +00:00
SandroandGitHub 0db6726dc2 go-avahi-cname: init at 2.6.1 (#539077) 2026-07-08 12:43:31 +00:00
R. Ryantm 269dcb2b8c c2patool: 0.26.68 -> 0.26.69 2026-07-08 12:42:29 +00:00
R. Ryantm 1032972f2c kbd-ergol: 0-unstable-2026-07-03 -> 0-unstable-2026-07-07 2026-07-08 12:39:03 +00:00
nixpkgs-ci[bot]andGitHub 8ab1ccd1c1 Merge master into staging-next 2026-07-08 12:34:48 +00:00
R. Ryantm f8ba92343f zbus-xmlgen: 5.3.1 -> 5.4.0 2026-07-08 12:32:19 +00:00
kinnrai 63b0a2ce52 syntax-highlight: init at 2.1.30 2026-07-08 20:27:50 +08:00
Antoine du HamelandGitHub 55b1940abd nodejs_26: 26.4.0 -> 26.5.0 (#539580) 2026-07-08 12:27:09 +00:00
SandroandGitHub 9bb0ceeac4 alt-tab-macos: 11.3.1 -> 11.4.2 (#538946) 2026-07-08 12:25:55 +00:00
Gaetan Lepage b7f5b85041 python3Packages.skrl: enable __structuredAttrs 2026-07-08 12:24:13 +00:00
Gaetan Lepage e78efb18b7 python3Packages.skrl: add missing test dependency hypothesis 2026-07-08 12:24:08 +00:00
Vika 9f3830cf6a libkrunfw: keep structuredAttrs compatibility while allowing kernelSrc override
This is useful for building forks of libkrunfw.
2026-07-08 15:15:46 +03:00
Ameya ShenoyandSandro 91b37794f4 kata-runtime: 3.29.0 -> 3.32.0
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2026-07-08 17:35:15 +05:30
Antoine du Hamel 4b4a9b71fe nodejs_26: 26.4.0 -> 26.5.0 2026-07-08 14:05:01 +02:00
SandroandGitHub 09f54bb5e0 zotero: sign on macOS (#539109) 2026-07-08 12:03:19 +00:00
R. Ryantm 3c12c0889e matrix-synapse-unwrapped: 1.155.0 -> 1.156.0 2026-07-08 12:03:11 +00:00
SandroandGitHub 7466321cd8 apache-airflow: 3.2.2 -> 3.3.0 (#539252) 2026-07-08 12:02:38 +00:00
SandroandGitHub e6b36d409c gh-actions-cache: drop (#539569) 2026-07-08 12:01:25 +00:00
Gaétan LepageandGitHub f788ea270a opencode: 1.17.13 -> 1.17.15 (#539431) 2026-07-08 12:01:13 +00:00
SandroandGitHub 6ff1317b65 filebrowser: add shell completions (#539356) 2026-07-08 11:54:44 +00:00
Adam C. StephensandGitHub f98185d5f6 claude-code: 2.1.202 -> 2.1.204 (#539470) 2026-07-08 11:54:42 +00:00
SandroandGitHub 3611b7bf2a wt: Add missing dependencies libICE and libSM; lms: 3.74.0 -> 3.78.0 (#539369) 2026-07-08 11:54:38 +00:00
R. Ryantm e600deac7c terraform-providers.selectel_selectel: 8.1.0 -> 8.2.1 2026-07-08 11:53:43 +00:00
Hythera 50001e14af wget: add patches for several CVEs 2026-07-08 13:53:18 +02:00
SandroandGitHub 3d6999bfb4 zabbix: 6.0.46 -> 6.0.47 + zabbix70: 7.0.27 -> 7.0.28 (#539502) 2026-07-08 11:50:32 +00:00
R. Ryantm 628112ceda goda: 0.9.3 -> 0.9.4 2026-07-08 11:45:39 +00:00
R. Ryantm 1de4ac2936 qownnotes: 26.6.9 -> 26.7.3 2026-07-08 11:44:40 +00:00
Stanisław Pitucha 9537f36967 fm-tune: 1.1 -> 1.2 2026-07-08 21:35:48 +10:00
Yohann BonifaceandGitHub 3e51577d18 maintainers: rename Holiu0618 -> Holiu618 (#539567) 2026-07-08 11:34:49 +00:00
nixpkgs-ci[bot]andGitHub 7adc6ac8ab direwolf-unstable: 1.8.1-unstable-2026-05-27 -> 1.8.1-unstable-2026-07-06 (#539564) 2026-07-08 11:34:04 +00:00