mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-28 09:25:44 +00:00
Jakub Sokołowski
625866e50b
With upgrade to Go above `1.15` and Gomobile we now drop support for darwin/arm32 builds. This means all devices like iPhone 5 or older. For more details see: https://tip.golang.org/doc/go1.15#darwin Signed-off-by: Jakub Sokołowski <jakub@status.im>
19 lines
437 B
Nix
19 lines
437 B
Nix
{ lib, buildGo116Package, fetchFromGitHub }:
|
|
|
|
let
|
|
inherit (lib) strings;
|
|
in buildGo116Module rec {
|
|
pname = "go-maven-resolver";
|
|
version = "v1.1.1";
|
|
|
|
vendorSha256 = "1p9pl33zpbw8zc85301mnp692lkr46ppm1q99wnqwynzi7x8hnkn";
|
|
|
|
src = fetchFromGitHub rec {
|
|
name = "${repo}-${version}-source";
|
|
owner = "status-im";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0pjab7v4cq3w5z3h0g9bfahqfs4raqp8y9sxwsri4zgbvdllq11q";
|
|
};
|
|
}
|