Merge pull request #222871 from viraptor/gauche-darwin

gauche: mark not broken on darwin
This commit is contained in:
Weijia Wang 2023-03-24 15:13:09 +02:00 committed by GitHub
commit 939d8ddbcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -45,6 +45,5 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ mnacamura ];
license = licenses.bsd3;
platforms = platforms.unix;
broken = stdenv.isDarwin;
};
}

View File

@ -29796,9 +29796,9 @@ with pkgs;
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
gaucheBootstrap = callPackage ../development/interpreters/gauche/boot.nix { };
gaucheBootstrap = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche/boot.nix { };
gauche = callPackage ../development/interpreters/gauche { };
gauche = darwin.apple_sdk_11_0.callPackage ../development/interpreters/gauche { };
gazelle-origin = python3Packages.callPackage ../tools/misc/gazelle-origin { };