pcp: init at 0.4.0
Co-authored-by: zowoq <59103226+zowoq@users.noreply.github.com> Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
This commit is contained in:
parent
de49d55938
commit
9e0ad1cf1f
23
pkgs/tools/misc/pcp/default.nix
Normal file
23
pkgs/tools/misc/pcp/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pcp";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dennis-tra";
|
||||
repo = "pcp";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-aZO8VuOiYhOPctFKZ6a2psJB0lKHlPc+NLy2RWDU4JI=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-3bkzBQ950Phg4A9p+IjeUx7Xw7eVmUbeYnQViNjghFk=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command line peer-to-peer data transfer tool based on libp2p";
|
||||
homepage = "https://github.com/dennis-tra/pcp";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ matthewcroughan ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -3551,6 +3551,8 @@ with pkgs;
|
||||
|
||||
pcb2gcode = callPackage ../tools/misc/pcb2gcode { };
|
||||
|
||||
pcp = callPackage ../tools/misc/pcp { };
|
||||
|
||||
persepolis = python3Packages.callPackage ../tools/networking/persepolis {
|
||||
wrapQtAppsHook = qt5.wrapQtAppsHook;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user