Only build for x86 Linux

This commit is contained in:
Emery Hemingway 2022-09-13 20:46:30 -05:00
parent cea8f719b8
commit 409a614010
2 changed files with 4 additions and 2 deletions

View File

@ -40,8 +40,9 @@
};
legacyPackages =
self.lib.mapAttrs (system: pkgs: pkgs.extend self.overlays.default)
(builtins.removeAttrs nixpkgs.legacyPackages [ "mipsel-linux" ]);
self.lib.mapAttrs (system: pkgs: pkgs.extend self.overlays.default) {
inherit (nixpkgs.legacyPackages) i686-linux x86_64-linux;
};
packages = self.lib.mapAttrs (system: pkgs:
with pkgs; {

View File

@ -65,6 +65,7 @@ in stdenv.mkDerivation rec {
--replace-needed libsndio.so.6.1 libsndio.so
'';
meta = {
broken = !(builtins.hasAttr stdenv.system sources);
description = "Squeak virtual machine and image";
homepage = "https://squeak.org/";
license = with lib.licenses; [ asl20 mit ];