nixpkgs/pkgs/tools/networking/gemget/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
598 B
Nix
Raw Normal View History

2021-11-14 22:58:14 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gemget";
2023-03-18 05:37:29 +00:00
version = "1.9.0";
2021-11-14 22:58:14 +00:00
src = fetchFromGitHub {
owner = "makeworld-the-better-one";
repo = pname;
rev = "v${version}";
2023-03-18 05:37:29 +00:00
sha256 = "sha256-P5+yRaf2HioKOclJMMm8bJ8/BtBbNEeYU57TceZVqQ8=";
2021-11-14 22:58:14 +00:00
};
2023-03-18 05:37:29 +00:00
vendorHash = "sha256-l8UwkFCCNUB5zyhlyu8YC++MhmcR6midnElCgdj50OU=";
2021-11-14 22:58:14 +00:00
meta = with lib; {
description = "Command line downloader for the Gemini protocol";
homepage = "https://github.com/makeworld-the-better-one/gemget";
license = licenses.mit;
maintainers = with maintainers; [ amfl ];
};
}