Skip to content

Commit

Permalink
Remove shellInputs.i686-linux
Browse files Browse the repository at this point in the history
It fails to compile (https://hydra.nixos.org/build/277363696) and it's
unlikely anybody cares.
  • Loading branch information
edolstra committed Nov 8, 2024
1 parent aeffdef commit d5f5717
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 d5f5717

Please sign in to comment.