vault / fyne-cross / v1.4.0
fyne-cross @ v1.4.0
integrity
- size
- 86.9 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/fyne-io/fyne-cross
release notes
Added
- Add support for Kubernetes
- Add ability to specify a different registry
- Support for fyne metadata
- Support build from Arm64 hosts
Changed
- Pull image from fyne-cross-image repository
- Simplify
fyne-cross darwin-sdk-extractby getting the needed files from the Apple SDK and then mounting them in the container image for each build - Provide a darwin image and mount the SDK from the host
- Use
fyne buildfor all targets
download
unix · zip
curl -fL -o v1.4.0.zip https://ratatoskr.space/pkg/fyne-cross/v1.4.0.zip
printf '%s %s\n' 'a21c6900752b0ba8689f1a90f3e55457146f2e1e0a45b803e3f6e0b7f870781e' 'v1.4.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne-cross/v1.4.0.zip"
$out = "v1.4.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a21c6900752b0ba8689f1a90f3e55457146f2e1e0a45b803e3f6e0b7f870781e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.0.tar.gz https://ratatoskr.space/pkg/fyne-cross/v1.4.0.tar.gz
printf '%s %s\n' '3580e0c49f7d5cdebb5e10c202fa5cd7a7941ada2569f0ab9ab0e97e88040e22' 'v1.4.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne-cross/v1.4.0.tar.gz"
$out = "v1.4.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3580e0c49f7d5cdebb5e10c202fa5cd7a7941ada2569f0ab9ab0e97e88040e22") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.4.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross/v1.4.0.zip
printf '%s %s\n' 'a21c6900752b0ba8689f1a90f3e55457146f2e1e0a45b803e3f6e0b7f870781e' 'v1.4.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross/v1.4.0.zip"
$out = "v1.4.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a21c6900752b0ba8689f1a90f3e55457146f2e1e0a45b803e3f6e0b7f870781e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross/v1.4.0.tar.gz
printf '%s %s\n' '3580e0c49f7d5cdebb5e10c202fa5cd7a7941ada2569f0ab9ab0e97e88040e22' 'v1.4.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross/v1.4.0.tar.gz"
$out = "v1.4.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3580e0c49f7d5cdebb5e10c202fa5cd7a7941ada2569f0ab9ab0e97e88040e22") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.4.0.zip | zip | 85.5 KiB |
blake3-24 65e45e9bf5a3d08934239478c6837d3ec165a8e585c60275
sha256 a21c6900752b0ba8689f1a90f3e55457146f2e1e0a45b803e3f6e0b7f870781e
sha1 4b306ad3064e32f5f3e3f7f50a23cf79b477d0fc
|
| v1.4.0.tar.gz | tar.gz | 63.9 KiB |
blake3-24 3264ac3fd13f3997316f085d06d2648ec7f4f651de9ff4c5
sha256 3580e0c49f7d5cdebb5e10c202fa5cd7a7941ada2569f0ab9ab0e97e88040e22
sha1 d3e16ccc3c683aad0cdc26f144f4ae69ea438bdc
|
go module archive
module zip with the module path rewritten to this mirror; fetched by go get through the
GOPROXY route
| artifact | format | size | hashes |
|---|---|---|---|
| v1.4.0.zip | zip | 86.7 KiB |
blake3-24 d6a8fb8ebe22da4b44c6a9e3f27b4b9558b98e13da41e2d0
sha256 9488877bc84de562bdd64dd67f5c5bb281de59e469a0e43e476890e1f971cb57
sha1 3f4809738161e8f3fb5da2e69adedaf75715a614
|
install
bazel
http_archive(
name = "fyne-cross",
urls = ["https://ratatoskr.space/pkg/fyne-cross/v1.4.0.tar.gz"],
integrity = "sha256-NYDgxJ99XN67XhDCAvpc16eUGtolafCrmrDpfogEDiI=",
strip_prefix = "fyne-cross-v1.4.0",
)
zig
.url = "https://ratatoskr.space/pkg/fyne-cross/v1.4.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne-cross@v1.4.0
install via yggdrasil mesh
bazel
http_archive(
name = "fyne-cross",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross/v1.4.0.tar.gz"],
integrity = "sha256-NYDgxJ99XN67XhDCAvpc16eUGtolafCrmrDpfogEDiI=",
strip_prefix = "fyne-cross-v1.4.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross/v1.4.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne-cross@v1.4.0