base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ge / gemget / package.nix
blobb31d4491b59945bd4c75bc8a34275ad7f3da2686
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gemget";
5   version = "1.9.0";
7   src = fetchFromGitHub {
8     owner = "makeworld-the-better-one";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-P5+yRaf2HioKOclJMMm8bJ8/BtBbNEeYU57TceZVqQ8=";
12   };
14   vendorHash = "sha256-l8UwkFCCNUB5zyhlyu8YC++MhmcR6midnElCgdj50OU=";
16   meta = with lib; {
17     description = "Command line downloader for the Gemini protocol";
18     homepage = "https://github.com/makeworld-the-better-one/gemget";
19     license = licenses.mit;
20     maintainers = with maintainers; [ amfl ];
21     mainProgram = "gemget";
22   };