chore: fix+update nix flake (#19142)

This commit is contained in:
Brian Picciano
2025-10-20 15:04:05 +02:00
committed by GitHub
parent 8eb5461dad
commit ca19c19b38
2 changed files with 14 additions and 9 deletions

18
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": {
"crane": {
"locked": {
"lastModified": 1754269165,
"narHash": "sha256-0tcS8FHd4QjbCVoxN9jI+PjHgA4vc/IjkUSp+N3zy0U=",
"lastModified": 1760924934,
"narHash": "sha256-tuuqY5aU7cUkR71sO2TraVKK2boYrdW3gCSXUkF4i44=",
"owner": "ipetkov",
"repo": "crane",
"rev": "444e81206df3f7d92780680e45858e31d2f07a08",
"rev": "c6b4d5308293d0d04fcfeee92705017537cad02f",
"type": "github"
},
"original": {
@@ -23,11 +23,11 @@
"rust-analyzer-src": "rust-analyzer-src"
},
"locked": {
"lastModified": 1755499663,
"narHash": "sha256-OxHGov+A4qR4kpO3e1I3LFR78IAKvDFnWoWsDWvFhKU=",
"lastModified": 1760942671,
"narHash": "sha256-LyO+TwzM7C8TJJkgbqC+BMnPiJX8XHQJmssTWS2Ze9k=",
"owner": "nix-community",
"repo": "fenix",
"rev": "d1ff4457857ad551e8d6c7c79324b44fac518b8b",
"rev": "b5e669194d67dbd4c659c40bb67476d9285b9a13",
"type": "github"
},
"original": {
@@ -63,11 +63,11 @@
"rust-analyzer-src": {
"flake": false,
"locked": {
"lastModified": 1755004716,
"narHash": "sha256-TbhPR5Fqw5LjAeI3/FOPhNNFQCF3cieKCJWWupeZmiA=",
"lastModified": 1760898410,
"narHash": "sha256-bTMk3D0V+6t3qOjXUfWSwjztEuLoAsgtAtqp6/wwfOc=",
"owner": "rust-lang",
"repo": "rust-analyzer",
"rev": "b2a58b8c6eff3c3a2c8b5c70dbf69ead78284194",
"rev": "c7e7eb9dc42df01016d795b0fd3a9ae87b7ada1c",
"type": "github"
},
"original": {

View File

@@ -120,6 +120,11 @@
rustNightly.rustfmt
pkgs.cargo-nextest
];
# Remove the hardening added by nix to fix jmalloc compilation error.
# More info: https://github.com/tikv/jemallocator/issues/108
hardeningDisable = [ "fortify" ];
} overrides);
}
);