-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
flake: Bump nixpkgs to 25.11 #14688
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
flake: Bump nixpkgs to 25.11 #14688
Conversation
We don't want too much unnecessary formatting churn.
5346510 to
28db0e0
Compare
|
Nixpkgs changed so that When I tried to fix that by setting The It seems like this is no longer working. I am also seeing structuredAttrs is incompatible with Things I haven't been able to figure out:
|
`mc config host add` has been removed SEE: minio/mc#5206
28db0e0 to
b79b527
Compare
|
This update also seems to make clangd dysfunctional. Still investingating... |
|
I can reproduce the (pkgs.hello.overrideAttrs {
__structuredAttrs = true;
}).inputDerivationThis complains about the output not being allowed to refer to output paths. I was suspicious of let
__structuredAttrs = true;
in
derivation ({
inherit __structuredAttrs;
system = "x86_64-linux";
name = "test";
outputs = [ "out" ];
builder = pkgs.stdenv.shell;
args = [
"-c"
''
out="${placeholder "out"}"
echo "$out" > $out
''
];
} // (
let
sharedOutputChecks = {
allowedReferences = null;
};
in
if __structuredAttrs then
{
outputChecks.out = sharedOutputChecks;
}
else
sharedOutputChecks
)
)And it does give the same error! ...But also it gives the same error when |
|
Created a Hydra jobset for this: https://hydra.nixos.org/jobset/nix/pr-14688 |
Motivation
25.11 is out and we should follow suit.
Context
Add 👍 to pull requests you find important.
The Nix maintainer team uses a GitHub project board to schedule and track reviews.