Skip to content

Commit

Permalink
Merge pull request #312119 from hogcycle/yoink
Browse files Browse the repository at this point in the history
yoink: init at 0.5.0
  • Loading branch information
eclairevoyant committed Jun 3, 2024
2 parents df2577c + 3eea303 commit 0fc0a54
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8387,6 +8387,12 @@
githubId = 896431;
name = "Chris Hodapp";
};
hogcycle = {
email = "nate@gysli.ng";
github = "hogcycle";
githubId = 57007241;
name = "hogcycle";
};
holgerpeters = {
name = "Holger Peters";
email = "holger.peters@posteo.de";
Expand Down
28 changes: 28 additions & 0 deletions pkgs/by-name/yo/yoink/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib
, fetchFromGitHub
, buildGoModule
}:

let
version = "0.5.0";
in
buildGoModule {
pname = "yoink";
inherit version;

src = fetchFromGitHub {
owner = "MrMarble";
repo = "yoink";
rev = "v${version}";
hash = "sha256-9ftlAECywF4khH279h2qcSvKRDQX2I7GDQ7EYcEybL0=";
};

vendorHash = "sha256-cnfh2D/k4JP9BNlI+6FVLBFyk5XMIYG/DotUdAZaY0Q=";

meta = {
homepage = "https://github.com/MrMarble/yoink";
description = "Automatically download freeleech torrents";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hogcycle ];
};
}

0 comments on commit 0fc0a54

Please sign in to comment.