xin/pkgs/yarr.nix

39 lines
787 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";
2023-05-16 07:28:51 -06:00
version = "2023-05-16";
2022-10-11 05:32:54 -06:00
src = fetchFromGitHub {
owner = "nkanaev";
repo = pname;
#rev = "v${version}";
2023-05-16 07:28:51 -06:00
rev = "7d99edab8d3c054e75feba183bd76fead15712f1";
sha256 = "sha256-gOydL1SyM1bGbErpefWlwhjLWH6j0GGpI/F0kEBHxic=";
2022-10-11 05:32:54 -06:00
};
vendorHash = 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 ];
};
}