Merge pull request #311889 from luftmensch-luftmensch/izrss_0.0.5

izrss: init at 0.0.5
This commit is contained in:
Christina Rust 2024-05-16 04:53:43 +02:00 committed by GitHub
commit 78ff3a2807
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,39 @@
{
lib,
buildGoModule,
fetchFromGitHub,
...
}:
let
version = "0.0.5";
in
buildGoModule {
pname = "izrss";
inherit version;
src = fetchFromGitHub {
owner = "isabelroses";
repo = "izrss";
rev = "refs/tags/v${version}";
hash = "sha256-6ayTxAjVqMjgDbk4oJjxzSUkWA6kU3Rnvvma+ryy4bw=";
};
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
vendorHash = "sha256-gH5AFroreBD0tQmT99Bmo2pAdPkiPWUNGsmKX4p3/JA=";
meta = with lib; {
description = "An RSS feed reader for the terminal written in Go";
homepage = "https://github.com/isabelroses/izrss";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
isabelroses
luftmensch-luftmensch
];
mainProgram = "izrss";
};
}