Unverified Commit e847adaa authored by Becker A.'s avatar Becker A. Committed by GitHub
Browse files

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



* ghdl: enable builds on "x86_64-darwin"

* oops

Co-authored-by: default avatarAleksana <me@aleksana.moe>
parent 27def8e8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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" ];
  };
})