{ lib, buildGo119Module, fetchFromGitHub, isUnstable, ... }: let vendorHash = if isUnstable then "sha256-1zBZREClt8jy0TUXJ1FuBEAJEPQoUcl4DZZ6U2LtRzg=" else "sha256-NIAJKq7TiMessqaohkdHy+j/vBKvMsiPgmnaiNAsGeE="; in with lib; buildGo119Module rec { pname = "gqrss"; version = "1.0.0"; src = fetchFromGitHub { owner = "qbit"; repo = pname; rev = "v${version}"; sha256 = "sha256-1ZGjifDgqA9yk9l0YB4rLpcvwaq9lWxDgItJ7lCVj2I="; }; vendorSha256 = vendorHash; proxyVendor = true; doCheck = false; meta = { description = "Simple github query tool"; homepage = "https://github.com/qbit/gqrss"; license = licenses.isc; maintainers = with maintainers; [ qbit ]; }; }