mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 16:17:48 +00:00
rain-bittorrent: init at 1.12.17 (#335455)
This commit is contained in:
commit
69382ad00c
@ -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";
|
||||
|
30
pkgs/by-name/ra/rain-bittorrent/package.nix
Normal file
30
pkgs/by-name/ra/rain-bittorrent/package.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user