Merge pull request #173322 from MatthewCroughan/mc/ipfs-upload-client
ipfs-upload-client: init at 0.1.1
This commit is contained in:
commit
4ee08b8bb2
22
pkgs/applications/networking/ipfs-upload-client/default.nix
Normal file
22
pkgs/applications/networking/ipfs-upload-client/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "ipfs-upload-client";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "infura";
|
||||||
|
repo = "ipfs-upload-client";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-O9N2QGQDNk/nwpuJrJKy9arN3gjsBAL+IdghfSaUrCw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-YzIUoN/B4TBlAfmvORrR9Gy+lMzwlaePm8yBoMsPaYU=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A minimal CLI tool to upload files and directories to IPFS via Infura's IPFS or another API endpoint";
|
||||||
|
homepage = "https://github.com/INFURA/ipfs-upload-client";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ matthewcroughan ];
|
||||||
|
};
|
||||||
|
}
|
@ -7669,6 +7669,8 @@ with pkgs;
|
|||||||
ipfs-migrator-unwrapped = callPackage ../applications/networking/ipfs-migrator/unwrapped.nix { };
|
ipfs-migrator-unwrapped = callPackage ../applications/networking/ipfs-migrator/unwrapped.nix { };
|
||||||
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
|
ipfs-migrator = callPackage ../applications/networking/ipfs-migrator { };
|
||||||
|
|
||||||
|
ipfs-upload-client = callPackage ../applications/networking/ipfs-upload-client { };
|
||||||
|
|
||||||
ipget = callPackage ../applications/networking/ipget { };
|
ipget = callPackage ../applications/networking/ipget { };
|
||||||
|
|
||||||
i-pi = with python3Packages; toPythonApplication i-pi;
|
i-pi = with python3Packages; toPythonApplication i-pi;
|
||||||
|
Loading…
Reference in New Issue
Block a user