Remove shellInputs.i686-linux

It fails to compile (https://hydra.nixos.org/build/277363696) and it's
unlikely anybody cares.
This commit is contained in:
Eelco Dolstra 2024-11-08 13:14:43 +01:00
parent aeffdeffc8
commit d5f5717172

View file

@ -62,7 +62,9 @@ in
build = forAllPackages (pkgName:
forAllSystems (system: nixpkgsFor.${system}.native.nixComponents.${pkgName}));
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
shellInputs = removeAttrs
(forAllSystems (system: self.devShells.${system}.default.inputDerivation))
[ "i686-linux" ];
buildStatic = forAllPackages (pkgName:
lib.genAttrs linux64BitSystems (system: nixpkgsFor.${system}.static.nixComponents.${pkgName}));