diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf416f..d201b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] +### Fixed +- support for Apple silicon M1 (#4) (previously, some packages using NSIS exe installers could not be extracted on that platform) ## [0.4.3] - 2024-05-21 diff --git a/build.sbt b/build.sbt index dee1cfa..a938bc3 100644 --- a/build.sbt +++ b/build.sbt @@ -100,7 +100,13 @@ libraryDependencies += "me.xdrop" % "fuzzywuzzy" % "1.4.0" // fuzzy search libraryDependencies += "net.sf.sevenzipjbinding" % "sevenzipjbinding" % "16.02-2.01" // native 7z for NSIS extraction -libraryDependencies += "net.sf.sevenzipjbinding" % "sevenzipjbinding-all-platforms" % "16.02-2.01" // native 7z for NSIS extraction +// libraryDependencies += "net.sf.sevenzipjbinding" % "sevenzipjbinding-all-platforms" % "16.02-2.01" // native 7z for NSIS extraction + +// https://www.mucommander.com/maven/com/mucommander/sevenzipjbinding-all-platforms/16.02-2.01/sevenzipjbinding-all-platforms-16.02-2.01.pom +// https://www.mucommander.com/maven/com/mucommander/sevenzipjbinding-all-platforms/16.02-2.01/sevenzipjbinding-all-platforms-16.02-2.01.jar +// resolvers += "mucommander internal Maven repository" at "https://www.mucommander.com/maven/" +libraryDependencies += ("com.mucommander" % "sevenzipjbinding-all-platforms" % "16.02-2.01" // patched by muCommander for Apple M1 support + from "https://www.mucommander.com/maven/com/mucommander/sevenzipjbinding-all-platforms/16.02-2.01/sevenzipjbinding-all-platforms-16.02-2.01.jar") libraryDependencies += "dev.zio" %% "zio-http" % "3.0.0-RC3" exclude("org.scala-lang.modules", "scala-collection-compat_3") // server