nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 634 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "gemget"; 9 version = "1.9.0"; 10 11 src = fetchFromGitHub { 12 owner = "makeworld-the-better-one"; 13 repo = "gemget"; 14 rev = "v${version}"; 15 sha256 = "sha256-P5+yRaf2HioKOclJMMm8bJ8/BtBbNEeYU57TceZVqQ8="; 16 }; 17 18 vendorHash = "sha256-l8UwkFCCNUB5zyhlyu8YC++MhmcR6midnElCgdj50OU="; 19 20 meta = { 21 description = "Command line downloader for the Gemini protocol"; 22 homepage = "https://github.com/makeworld-the-better-one/gemget"; 23 license = lib.licenses.mit; 24 maintainers = with lib.maintainers; [ amfl ]; 25 mainProgram = "gemget"; 26 }; 27}