lol

Merge pull request #224823 from Uthar/clasp-arm

clasp-common-lisp: set correct platforms

authored by

7c6f434c and committed by
GitHub
b505951d c74e4d16

+4 -1
+4 -1
pkgs/development/compilers/clasp/default.nix
··· 90 90 description = "A Common Lisp implementation based on LLVM with C++ integration"; 91 91 license = lib.licenses.lgpl21Plus ; 92 92 maintainers = [lib.maintainers.raskin lib.maintainers.uthar]; 93 - platforms = lib.platforms.linux; 93 + platforms = ["x86_64-linux" "x86_64-darwin"]; 94 + # Upstream claims support, but breaks with: 95 + # error: use of undeclared identifier 'aligned_alloc' 96 + broken = llvmPackages_15.stdenv.isDarwin; 94 97 homepage = "https://github.com/clasp-developers/clasp"; 95 98 }; 96 99