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

authored by Paul Meyer and committed by GitHub 76afd655 26b2e92a

+13 -13
+13 -13
pkgs/by-name/st/storj-uplink/package.nix
··· 4 fetchFromGitHub, 5 }: 6 7 - buildGoModule rec { 8 pname = "storj-uplink"; 9 - version = "1.131.7"; 10 11 src = fetchFromGitHub { 12 owner = "storj"; 13 repo = "storj"; 14 - rev = "v${version}"; 15 - hash = "sha256-zZQOiYH2YN6pRwu2ddt+IEJ35RJ3rplbQ+T4/zKtv8w="; 16 }; 17 18 subPackages = [ "cmd/uplink" ]; 19 20 - vendorHash = "sha256-8g5NZpw2T2NuyizSh/cA2seSChEGWzlZmR82Xg0ClKQ="; 21 22 - ldflags = [ 23 - "-s" 24 - "-w" 25 - ]; 26 27 - meta = with lib; { 28 description = "Command-line tool for Storj"; 29 homepage = "https://storj.io"; 30 - license = licenses.agpl3Only; 31 mainProgram = "uplink"; 32 - maintainers = with maintainers; [ felipeqq2 ]; 33 }; 34 - }
··· 4 fetchFromGitHub, 5 }: 6 7 + buildGoModule (finalAttrs: { 8 pname = "storj-uplink"; 9 + version = "1.133.5"; 10 11 src = fetchFromGitHub { 12 owner = "storj"; 13 repo = "storj"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-MvaA8AkoP4FszEEM33QKDt5zeXMZ3XDt5uU1t6C6Q1I="; 16 }; 17 18 subPackages = [ "cmd/uplink" ]; 19 20 + vendorHash = "sha256-N1rEEM+oH2VVOvg9c8gICQ1aDO9FS/faVbQl0kj1jYM="; 21 22 + ldflags = [ "-s" ]; 23 + 24 + # Tests fail with 'listen tcp 127.0.0.1:0: bind: operation not permitted'. 25 + __darwinAllowLocalNetworking = true; 26 27 + meta = { 28 description = "Command-line tool for Storj"; 29 homepage = "https://storj.io"; 30 + license = lib.licenses.agpl3Only; 31 mainProgram = "uplink"; 32 + maintainers = with lib.maintainers; [ felipeqq2 ]; 33 }; 34 + })