fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule (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})