lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 23 lines 623 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "pcp"; 5 version = "0.4.0"; 6 7 src = fetchFromGitHub { 8 owner = "dennis-tra"; 9 repo = "pcp"; 10 rev = "v${version}"; 11 sha256 = "sha256-aZO8VuOiYhOPctFKZ6a2psJB0lKHlPc+NLy2RWDU4JI="; 12 }; 13 14 vendorHash = "sha256-3bkzBQ950Phg4A9p+IjeUx7Xw7eVmUbeYnQViNjghFk="; 15 16 meta = with lib; { 17 description = "Command line peer-to-peer data transfer tool based on libp2p"; 18 homepage = "https://github.com/dennis-tra/pcp"; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ matthewcroughan ]; 21 platforms = platforms.linux; 22 }; 23}