···11---- xjump/src/main.c 2018-02-20 09:15:15.608807657 +0100
22-+++ xjump-patched/src/main.c 2018-02-20 09:15:34.148949100 +0100
33-@@ -604,18 +604,6 @@
44- * optimistic privilege dropping function. */
55- setgroups(0, NULL);
66-77-- if (setresgid(-1, realgid, realgid) != 0) {
88-- perror("Could not drop setgid privileges. Aborting.");
99-- exit(1);
1010-- }
1111--
1212-- /* Dropping user privileges must come last.
1313-- * Otherwise we won't be able to drop group privileges anymore */
1414-- if (setresuid(-1, realuid, realuid) != 0) {
1515-- perror("Could not drop setuid privileges. Aborting.");
1616-- exit(1);
1717-- }
1818--
1919- /* From now on we run with regular user privileges */
2020-2121- static XtActionsRec a_table[] = {
···11-diff --git a/src/main/java/com/google/devtools/build/lib/exec/local/PosixLocalEnvProvider.java b/src/main/java/com/google/devtools/build/lib/exec/local/PosixLocalEnvProvider.java
22-index 6fff2af..7e2877e 100644
33---- a/src/main/java/com/google/devtools/build/lib/exec/local/PosixLocalEnvProvider.java
44-+++ b/src/main/java/com/google/devtools/build/lib/exec/local/PosixLocalEnvProvider.java
55-@@ -47,6 +47,16 @@ public final class PosixLocalEnvProvider implements LocalEnvProvider {
66- Map<String, String> env, BinTools binTools, String fallbackTmpDir) {
77- ImmutableMap.Builder<String, String> result = ImmutableMap.builder();
88- result.putAll(Maps.filterKeys(env, k -> !k.equals("TMPDIR")));
99-+
1010-+ // In case we are running on NixOS.
1111-+ // If bash is called with an unset PATH on this platform,
1212-+ // it will set it to /no-such-path and default tools will be missings.
1313-+ // See, https://github.com/NixOS/nixpkgs/issues/94222
1414-+ // So we ensure that minimal dependencies are present.
1515-+ if (!env.containsKey("PATH")){
1616-+ result.put("PATH", "@actionsPathPatch@");
1717-+ }
1818-+
1919- String p = clientEnv.get("TMPDIR");
2020- if (Strings.isNullOrEmpty(p)) {
2121- // Do not use `fallbackTmpDir`, use `/tmp` instead. This way if the user didn't export TMPDIR
2222-index 95642767c6..39d3c62461 100644
2323---- a/src/main/java/com/google/devtools/build/lib/exec/local/XcodeLocalEnvProvider.java
2424-+++ b/src/main/java/com/google/devtools/build/lib/exec/local/XcodeLocalEnvProvider.java
2525-@@ -74,6 +74,16 @@ public final class XcodeLocalEnvProvider implements LocalEnvProvider {
2626-2727- ImmutableMap.Builder<String, String> newEnvBuilder = ImmutableMap.builder();
2828- newEnvBuilder.putAll(Maps.filterKeys(env, k -> !k.equals("TMPDIR")));
2929-+
3030-+ // In case we are running on NixOS.
3131-+ // If bash is called with an unset PATH on this platform,
3232-+ // it will set it to /no-such-path and default tools will be missings.
3333-+ // See, https://github.com/NixOS/nixpkgs/issues/94222
3434-+ // So we ensure that minimal dependencies are present.
3535-+ if (!env.containsKey("PATH")){
3636-+ newEnvBuilder.put("PATH", "@actionsPathPatch@");
3737-+ }
3838-+
3939- String p = clientEnv.get("TMPDIR");
4040- if (Strings.isNullOrEmpty(p)) {
4141- // Do not use `fallbackTmpDir`, use `/tmp` instead. This way if the user didn't export TMPDIR
···11-#!/usr/bin/env python3
22-import sys
33-import json
44-55-if len(sys.argv) != 2:
66- print("usage: ./this-script src-deps.json < WORKSPACE", file=sys.stderr)
77- print("Takes the bazel WORKSPACE file and reads all archives into a json dict (by evaling it as python code)", file=sys.stderr)
88- print("Hail Eris.", file=sys.stderr)
99- sys.exit(1)
1010-1111-http_archives = []
1212-1313-# just the kw args are the dict { name, sha256, urls … }
1414-def http_archive(**kw):
1515- http_archives.append(kw)
1616-# like http_file
1717-def http_file(**kw):
1818- http_archives.append(kw)
1919-2020-# this is inverted from http_archive/http_file and bundles multiple archives
2121-def _distdir_tar(**kw):
2222- for archive_name in kw['archives']:
2323- http_archives.append({
2424- "name": archive_name,
2525- "sha256": kw['sha256'][archive_name],
2626- "urls": kw['urls'][archive_name]
2727- })
2828-2929-# TODO?
3030-def git_repository(**kw):
3131- print(json.dumps(kw, sort_keys=True, indent=4), file=sys.stderr)
3232- sys.exit(1)
3333-3434-# execute the WORKSPACE like it was python code in this module,
3535-# using all the function stubs from above.
3636-exec(sys.stdin.read())
3737-3838-# transform to a dict with the names as keys
3939-d = { el['name']: el for el in http_archives }
4040-4141-def has_urls(el):
4242- return ('url' in el and el['url']) or ('urls' in el and el['urls'])
4343-def has_sha256(el):
4444- return 'sha256' in el and el['sha256']
4545-bad_archives = list(filter(lambda el: not has_urls(el) or not has_sha256(el), d.values()))
4646-if bad_archives:
4747- print('Following bazel dependencies are missing url or sha256', file=sys.stderr)
4848- print('Check bazel sources for master or non-checksummed dependencies', file=sys.stderr)
4949- for el in bad_archives:
5050- print(json.dumps(el, sort_keys=True, indent=4), file=sys.stderr)
5151- sys.exit(1)
5252-5353-with open(sys.argv[1], "w") as f:
5454- print(json.dumps(d, sort_keys=True, indent=4), file=f)
+3-3
pkgs/os-specific/linux/zfs/2_3.nix
···1212 kernelModuleAttribute = "zfs_2_3";
13131414 kernelMinSupportedMajorMinor = "4.18";
1515- kernelMaxSupportedMajorMinor = "6.15";
1515+ kernelMaxSupportedMajorMinor = "6.16";
16161717 # this package should point to the latest release.
1818- version = "2.3.3";
1818+ version = "2.3.4";
19192020 tests = {
2121 inherit (nixosTests.zfs) series_2_3;
···2929 amarshall
3030 ];
31313232- hash = "sha256-NXAbyGBfpzWfm4NaP1/otTx8fOnoRV17343qUMdQp5U=";
3232+ hash = "sha256-8BSuDRDyqPGAiyGGxFyEZIcXB+cKsKk25jcFPrSK3GI=";
3333}
···504504 bash_5 = throw "'bash_5' has been renamed to/replaced by 'bash'"; # Converted to throw 2024-10-17
505505 bareboxTools = throw "bareboxTools has been removed due to lack of interest in maintaining it in nixpkgs"; # Added 2025-04-19
506506 bazel_5 = throw "bazel_5 has been removed as it is EOL"; # Added 2025-08-09
507507+ bazel_6 = throw "bazel_6 has been removed as it will be EOL by the release of Nixpkgs 25.11"; # Added 2025-08-19
507508 BeatSaberModManager = beatsabermodmanager; # Added 2024-06-12
508509 beam_nox = throw "beam_nox has been removed in favor of beam_minimal or beamMinimalPackages"; # Added 2025-04-01
509510 beatsabermodmanager = throw "'beatsabermodmanager' has been removed due to lack of upstream maintainenance. Consider using 'bs-manager' instead"; # Added 2025-03-18
···724725 daytona-bin = throw "'daytona-bin' has been removed, as it was unmaintained in nixpkgs"; # Added 2025-07-21
725726 dbeaver = throw "'dbeaver' has been renamed to/replaced by 'dbeaver-bin'"; # Added 2024-05-16
726727 dbench = throw "'dbench' has been removed as it is unmaintained for 14 years and broken"; # Added 2025-05-17
728728+ dbus-map = throw "'dbus-map' has been dropped as it is unmaintained"; # Added 2024-11-01
729729+ dbus-sharp-1_0 = throw "'dbus-sharp-1_0' has been removed as it was unmaintained and had no dependents"; # Added 2025-08-25
730730+ dbus-sharp-2_0 = throw "'dbus-sharp-2_0' has been removed as it was unmaintained and had no dependents"; # Added 2025-08-25
731731+ dbus-sharp-glib-1_0 = throw "'dbus-sharp-glib-1_0' has been removed as it was unmaintained and had no dependents"; # Added 2025-08-25
732732+ dbus-sharp-glib-2_0 = throw "'dbus-sharp-glib-2_0' has been removed as it was unmaintained and had no dependents"; # Added 2025-08-25
727733 dclib = throw "'dclib' has been removed as it is unmaintained for 16 years and broken"; # Added 2025-05-25
728728- dbus-map = throw "'dbus-map' has been dropped as it is unmaintained"; # Added 2024-11-01
729734 deadpixi-sam = deadpixi-sam-unstable;
730735731736 debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
···16051610 netbox_3_7 = throw "netbox 3.7 series has been removed as it was EOL"; # Added 2025-04-23
16061611 nettools = net-tools; # Added 2025-06-11
16071612 newt-go = fosrl-newt; # Added 2025-06-24
16131613+ notify-sharp = throw "'notify-sharp' has been removed as it was unmaintained and depends on deprecated dbus-sharp versions"; # Added 2025-08-25
16081614 nextcloud29 = throw ''
16091615 Nextcloud v29 has been removed from `nixpkgs` as the support for is dropped
16101616 by upstream in 2025-04. Please upgrade to at least Nextcloud v30 by declaring
···24622468 xflux = throw "'xflux' has been removed as it was unmaintained"; # Added 2025-08-22
24632469 xineLib = throw "'xineLib' has been renamed to/replaced by 'xine-lib'"; # Converted to throw 2024-10-17
24642470 xineUI = throw "'xineUI' has been renamed to/replaced by 'xine-ui'"; # Converted to throw 2024-10-17
24712471+ xjump = throw "'xjump' has been removed as it is unmaintained"; # Added 2025-08-22
24652472 xlsxgrep = throw "'xlsxgrep' has been dropped due to lack of maintenance."; # Added 2024-11-01
24662473 xmlada = gnatPackages.xmlada; # Added 2024-02-25
24672474 xmlroff = throw "'xmlroff' has been removed as it is unmaintained and broken"; # Added 2025-05-18