mirror of
https://github.com/status-im/status-react.git
synced 2025-01-12 03:54:32 +00:00
1ee16da0c7
nix: use nixpkgs unstable for gradle 8.8 nix: ldflags are expected to be a list chore: fix deprecated vendorSha256 nix: bump jdk to 17 & pass java version to gradle make: set universalApk false in run-android target nix: fix --replace deprecation warning - https://github.com/NixOS/nixpkgs/pull/260776 ios: update pod and gem lockfiles nix: bump nodejs to 20.12.2 nix: add Xcode 16.0 to allowed versions chore: upgrade rn-image-crop-picker lib nix: full path for missing dep in node_modules sh e2e: removed redundant element --------- Co-authored-by: Yevheniia Berdnyk <ie.berdnyk@gmail.com>
17 lines
390 B
Nix
17 lines
390 B
Nix
{ buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-maven-resolver";
|
|
version = "v1.1.2";
|
|
|
|
vendorHash = "sha256-dlqI+onfeo4tTwmHeq8heVKRzLU1gFEQ+4iv+8egN90=";
|
|
|
|
src = fetchFromGitHub rec {
|
|
name = "${repo}-${version}-source";
|
|
owner = "status-im";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0p3qz5w8spzdxs70m1sdfwi0ajv4ciw3f7fxligf45vj2fwp5dab";
|
|
};
|
|
}
|