clasp-common-lisp: set correct platforms

This commit is contained in:
Kasper Gałkowski 2023-04-05 16:36:01 +02:00
parent 5cdf84485c
commit 7fa285932c

View file

@ -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";
};