mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-23 06:26:15 +02:00
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:
parent
aeffdeffc8
commit
d5f5717172
1 changed files with 3 additions and 1 deletions
|
@ -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}));
|
||||
|
|
Loading…
Reference in a new issue