Merge pull request #11836 from DeterminateSystems/remove-shellInputs-i686-linux

Remove shellInputs.i686-linux
This commit is contained in:
Eelco Dolstra 2024-11-08 13:52:13 +01:00 committed by GitHub
commit 7630fe7c86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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}));