rain-bittorrent: init at 1.12.17 (#335455)

This commit is contained in:
Aleksana 2024-12-12 17:24:57 +08:00 committed by GitHub
commit 69382ad00c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 41 additions and 0 deletions

View File

@ -11324,6 +11324,11 @@
githubId = 7183441;
name = "Justin Lovinger";
};
justinrubek = {
github = "justinrubek";
githubId = 25621857;
name = "Justin Rubek";
};
justinwoo = {
email = "moomoowoo@gmail.com";
github = "justinwoo";
@ -13880,6 +13885,12 @@
githubId = 26458780;
name = "Matthew Croughan";
};
matthewdargan = {
email = "matthewdargan57@gmail.com";
githubId = 18505904;
github = "matthewdargan";
name = "Matthew Dargan";
};
matthew-levan = {
email = "matthew@coeli.network";
github = "matthew-levan";

View File

@ -0,0 +1,30 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "rain";
version = "1.13.0";
src = fetchFromGitHub {
owner = "cenkalti";
repo = "rain";
rev = "refs/tags/v${version}";
hash = "sha256-pz20vhr3idXja7wYIdVr1dosSpqYiQfeho66rqd718I=";
};
vendorHash = "sha256-40DK0D9TRJDfrMbBJNpcNzvjKb/uXN/Yz5Bb7oXBh+E=";
meta = {
description = "BitTorrent client and library in Go";
homepage = "https://github.com/cenkalti/rain";
license = lib.licenses.mit;
mainProgram = "rain";
maintainers = with lib.maintainers; [
justinrubek
matthewdargan
];
};
}