ghdl: enable builds on "x86_64-darwin" (#335975)

* ghdl: enable builds on "x86_64-darwin"

* oops

Co-authored-by: Aleksana <me@aleksana.moe>
This commit is contained in:
Becker A.
2024-09-03 19:51:19 +08:00
committed by GitHub
co-authored by Aleksana
parent 27def8e801
commit e847adaa30
+3 -1
View File
@@ -120,6 +120,8 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.gpl2Plus;
mainProgram = "ghdl";
maintainers = with lib.maintainers; [ lucus16 thoughtpolice ];
platforms = lib.platforms.linux;
platforms =
lib.platforms.linux
++ lib.optionals (backend == "mcode" || backend == "llvm") [ "x86_64-darwin" ];
};
})