Merge pull request #209548 from felipeqq2/init/storj-uplink

storj-uplink: init at 1.68.2
This commit is contained in:
Mario Rodas 2023-08-08 08:29:16 -05:00 committed by GitHub
commit 7f60434172
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "storj-uplink";
version = "1.85.1";
src = fetchFromGitHub {
owner = "storj";
repo = "storj";
rev = "v${version}";
hash = "sha256-WfV7n4AgZoD8rOd6UVBFRqOz9qs1frjSGLUhjxqTG08=";
};
subPackages = [ "cmd/uplink" ];
vendorHash = "sha256-EkB8GjWtOO3Yi0PFFE8G8swwzYmw6D6LDO24vnSrkLs=";
meta = with lib; {
description = "Command-line tool for Storj";
homepage = "https://storj.io";
license = licenses.agpl3Only;
mainProgram = "uplink";
maintainers = with maintainers; [ felipeqq2 ];
};
}

View file

@ -33957,6 +33957,8 @@ with pkgs;
songrec = callPackage ../applications/audio/songrec { };
storj-uplink = callPackage ../applications/networking/sync/storj-uplink {};
storrent = callPackage ../applications/networking/p2p/storrent { };
speedread = callPackage ../applications/misc/speedread { };