xin/pkgs/gqrss.nix

34 lines
612 B
Nix
Raw Normal View History

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