xin/pkgs/yarr.nix

39 lines
789 B
Nix
Raw Normal View History

2022-11-01 07:10:12 -06:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
2022-10-11 05:32:54 -06:00
with lib;
2022-11-01 07:10:12 -06:00
buildGoModule rec {
2022-10-11 05:32:54 -06:00
pname = "yarr";
version = "2023-01-30";
2022-10-11 05:32:54 -06:00
src = fetchFromGitHub {
owner = "nkanaev";
repo = pname;
#rev = "v${version}";
rev = "c092842ee4a9621aff12d439f2fedd95058010fe";
sha256 = "sha256-VTEe+7x6DVXJFS+AEnfcUaag85zzK5Xve0zp1Polw7I=";
2022-10-11 05:32:54 -06:00
};
vendorSha256 = null;
2022-10-11 05:32:54 -06:00
ldflags = [ "-X main.Version=${version}" ];
tags = [ "sqlite_foreign_keys" "release" ];
proxyVendor = true;
doCheck = false;
subPackages = [ "./src/main.go" ];
postInstall = ''
mv $out/bin/main $out/bin/yarr
'';
meta = {
description = "Yet Another RSS Reader";
homepage = "https://github.com/nkanaev/yarr";
license = licenses.mit;
maintainers = with maintainers; [ qbit ];
};
}