about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/pcp/default.nix
blob: eb73e128533e86e64283fb26a7b5e1f117a2eeb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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=";
  };

  vendorHash = "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;
  };
}