Unverified Commit 76afd655 authored by Paul Meyer's avatar Paul Meyer Committed by GitHub
Browse files

storj-uplink: 1.131.7 -> 1.133.5 (#425295)

parents 26b2e92a e6dbba13
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -4,31 +4,31 @@
  fetchFromGitHub,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "storj-uplink";
  version = "1.131.7";
  version = "1.133.5";

  src = fetchFromGitHub {
    owner = "storj";
    repo = "storj";
    rev = "v${version}";
    hash = "sha256-zZQOiYH2YN6pRwu2ddt+IEJ35RJ3rplbQ+T4/zKtv8w=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-MvaA8AkoP4FszEEM33QKDt5zeXMZ3XDt5uU1t6C6Q1I=";
  };

  subPackages = [ "cmd/uplink" ];

  vendorHash = "sha256-8g5NZpw2T2NuyizSh/cA2seSChEGWzlZmR82Xg0ClKQ=";
  vendorHash = "sha256-N1rEEM+oH2VVOvg9c8gICQ1aDO9FS/faVbQl0kj1jYM=";

  ldflags = [
    "-s"
    "-w"
  ];
  ldflags = [ "-s" ];

  meta = with lib; {
  # Tests fail with 'listen tcp 127.0.0.1:0: bind: operation not permitted'.
  __darwinAllowLocalNetworking = true;

  meta = {
    description = "Command-line tool for Storj";
    homepage = "https://storj.io";
    license = licenses.agpl3Only;
    license = lib.licenses.agpl3Only;
    mainProgram = "uplink";
    maintainers = with maintainers; [ felipeqq2 ];
    maintainers = with lib.maintainers; [ felipeqq2 ];
  };
}
})