Skip to content

Commit

Permalink
Merge pull request #11836 from DeterminateSystems/remove-shellInputs-…
Browse files Browse the repository at this point in the history
…i686-linux

Remove shellInputs.i686-linux
  • Loading branch information
edolstra authored Nov 8, 2024
2 parents aeffdef + d5f5717 commit 7630fe7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packaging/hydra.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}));
Expand Down

0 comments on commit 7630fe7

Please sign in to comment.