1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

flake: Drop pre-commit override

`pre-commit` builds fine with the flake's input nixpkgs
on i686-linux.
This commit is contained in:
Sergei Zimmerman 2025-05-29 21:57:08 +00:00
parent ba96067535
commit dd80f16376
No known key found for this signature in database
GPG key ID: A9B0B557CA632325

View file

@ -179,19 +179,6 @@
};
nix = final.nixComponents2.nix-cli;
# See https://github.com/NixOS/nixpkgs/pull/214409
# Remove when fixed in this flake's nixpkgs
pre-commit =
if prev.stdenv.hostPlatform.system == "i686-linux" then
(prev.pre-commit.override (o: {
dotnet-sdk = "";
})).overridePythonAttrs
(o: {
doCheck = false;
})
else
prev.pre-commit;
};
in