xin/pkgs/yarr.nix

41 lines
727 B
Nix
Raw Permalink Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, buildGoModule
, fetchFromGitHub
, ...
2023-07-11 09:12:50 -06:00
}:
2022-10-11 05:32:54 -06:00
with lib;
2023-09-12 08:44:05 -06:00
buildGoModule rec {
pname = "yarr";
version = "2.4";
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
src = fetchFromGitHub {
owner = "nkanaev";
repo = pname;
rev = "v${version}";
sha256 = "sha256-ZMQ+IX8dZuxyxQhD/eWAe4bGGCVcaCeVgF+Wqs79G+k=";
};
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
vendorHash = null;
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
ldflags = [ "-X main.Version=${version}" ];
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
tags = [ "sqlite_foreign_keys" "release" ];
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
proxyVendor = true;
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
doCheck = false;
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
subPackages = [ "./src/main.go" ];
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
postInstall = ''
mv $out/bin/main $out/bin/yarr
'';
2022-10-11 05:32:54 -06:00
2023-09-12 08:44:05 -06:00
meta = {
description = "Yet Another RSS Reader";
homepage = "https://github.com/nkanaev/yarr";
license = licenses.mit;
maintainers = with maintainers; [ qbit ];
};
}