Unverified Commit b505951d authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #224823 from Uthar/clasp-arm

clasp-common-lisp: set correct platforms
parents c74e4d16 7fa28593
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -90,7 +90,10 @@ in llvmPackages_15.stdenv.mkDerivation {
    description = "A Common Lisp implementation based on LLVM with C++ integration";
    license = lib.licenses.lgpl21Plus ;
    maintainers = [lib.maintainers.raskin lib.maintainers.uthar];
    platforms = lib.platforms.linux;
    platforms = ["x86_64-linux" "x86_64-darwin"];
    # Upstream claims support, but breaks with:
    # error: use of undeclared identifier 'aligned_alloc'
    broken = llvmPackages_15.stdenv.isDarwin;
    homepage = "https://github.com/clasp-developers/clasp";
  };