mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 02:56:07 +00:00
Jakub Sokołowski
0d403739f9
I've noticed issues with the https://repository.sonatype.org/ Maven repository we were using. They appear to have purged their storage of a lot of packages, including our own for example: https://repository.sonatype.org/content/groups/sonatype-public-grid/com/github/status-im/ For this reason I've release a new version of `go-maven-resolver` that includes two more Maven repos: - https://plugins.gradle.org/m2 - https://jitpack.io Signed-off-by: Jakub Sokołowski <jakub@status.im>
19 lines
436 B
Nix
19 lines
436 B
Nix
{ lib, buildGo114Module, fetchFromGitHub }:
|
|
|
|
let
|
|
inherit (lib) strings;
|
|
in buildGo114Module 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";
|
|
};
|
|
}
|