gemget: init at 1.8.0

This commit is contained in:
amfl
2021-11-15 16:38:38 +13:00
parent cd05ebecfb
commit 6b23ea33ec
2 changed files with 24 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gemget";
version = "1.8.0";
src = fetchFromGitHub {
owner = "makeworld-the-better-one";
repo = pname;
rev = "v${version}";
sha256 = "PmtIgxnzfLduNGTx8SNDky6juv+NTJ8Cr++SOCk/QNU=";
};
vendorSha256 = "sha256-Ep6HAJgurxFbA4L77z8V2ar06BBVWlAJS9VoSSUg27U=";
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 ];
};
}
+2
View File
@@ -5432,6 +5432,8 @@ with pkgs;
gelasio = callPackage ../data/fonts/gelasio { };
gemget = callPackage ../tools/networking/gemget {};
gen-oath-safe = callPackage ../tools/security/gen-oath-safe { };
genext2fs = callPackage ../tools/filesystems/genext2fs { };