My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/gemget/default.nix

22 lines
593 B

{ 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 ];
};
}