1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

Merge pull request #327694 from schnow265/master

This commit is contained in:
Marcus Ramberg 2024-07-18 17:41:40 +03:00 committed by GitHub
commit 84915e9f8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 32 additions and 0 deletions

View file

@ -18113,6 +18113,12 @@
githubId = 15379000;
name = "schneefux";
};
schnow265 = {
email = "thesnowbox@icloud.com";
github = "schnow265";
githubId = 57457177;
name = "Luca Scalet";
};
schnusch = {
github = "schnusch";
githubId = 5104601;

View file

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "goread";
version = "1.6.5";
src = fetchFromGitHub {
owner = "TypicalAM";
repo = "goread";
rev = "v${version}";
hash = "sha256-SRVXcdgtRpWqvO28CnUcx40nFJnG+Hd94Ezgaj5xK6A=";
};
vendorHash = "sha256-/kxEnw8l9S7WNMcPh1x7xqiQ3L61DSn6DCIvJlyrip0=";
env.TEST_OFFLINE_ONLY = 1;
meta = {
description = "Beautiful program to read your RSS/Atom feeds right in the terminal";
homepage = "https://github.com/TypicalAM/goread";
changelog = "https://github.com/TypicalAM/goread/releases/tag/v${version}";
license = lib.licenses.gpl3Plus;
mainProgram = "goread";
maintainers = with lib.maintainers; [ schnow265 ];
};
}