xin/pkgs/gqrss.nix

34 lines
700 B
Nix
Raw Permalink Normal View History

2023-07-11 09:12:50 -06:00
{
lib,
buildGoModule,
fetchFromGitHub,
...
}: let
vendorHash = "sha256-1zBZREClt8jy0TUXJ1FuBEAJEPQoUcl4DZZ6U2LtRzg=";
in
with lib;
buildGoModule rec {
pname = "gqrss";
version = "1.0.0";
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
src = fetchFromGitHub {
owner = "qbit";
repo = pname;
rev = "v${version}";
sha256 = "sha256-1ZGjifDgqA9yk9l0YB4rLpcvwaq9lWxDgItJ7lCVj2I=";
};
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
vendorSha256 = vendorHash;
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
proxyVendor = true;
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
doCheck = false;
2022-08-25 12:21:35 -06:00
2023-07-11 09:12:50 -06:00
meta = {
description = "Simple github query tool";
homepage = "https://github.com/qbit/gqrss";
license = licenses.isc;
maintainers = with maintainers; [qbit];
};
}