add: apple container build target

This commit is contained in:
2026-09-02 13:21:30 -04:00
parent 52e8bf19e0
commit 9b1238eb39
4 changed files with 60 additions and 42 deletions
+10
View File
@@ -0,0 +1,10 @@
final: prev: {
containerLatest = prev.container.overrideAttrs (oldAttrs: rec {
version = "1.3.1";
src = prev.fetchurl {
url = "https://github.com/apple/container/releases/download/${version}/container-${version}-installer-signed.pkg";
hash = "sha256-p8G515J9MIdfL2x70dDLBsLapspXzp6QpRROiY/fVKg=";
};
});
}