depot/pkgs/by-name/pg/pget/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
672 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pget";
version = "0.2.1";
src = fetchFromGitHub {
owner = "Code-Hex";
repo = "pget";
rev = "v${version}";
hash = "sha256-SDe9QH1iSRfMBSCfYiOJPXUbDvxH5cCCWvQq9uTWT9Y=";
};
vendorHash = "sha256-p9sgvk5kfim3rApgp++1n05S9XrOWintxJfCeeySuBo=";
ldflags = [
"-w"
"-s"
"-X=main.version=${version}"
];
meta = with lib; {
description = "Fast, resumable file download client";
homepage = "https://github.com/Code-Hex/pget?tab=readme-ov-file";
license = licenses.mit;
maintainers = with maintainers; [ Ligthiago ];
mainProgram = "pget";
};
}