nom: init at 2.0.2

This commit is contained in:
Nadir Ishiguro 2023-11-13 19:50:20 +01:00
parent 4c5b8768f4
commit 230acf2b66

@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "nom";
version = "2.0.2";
src = fetchFromGitHub {
owner = "guyfedwards";
repo = "nom";
rev = "v${version}";
hash = "sha256-6tk8NRuBbRMoaz3CmUUOC6thxIgjk/MWl50+YgQ6l5o=";
};
vendorHash = "sha256-fP6yxfIQoVaBC9hYcrCyo3YP3ntEVDbDTwKMO9TdyDI=";
meta = with lib; {
homepage = "https://github.com/guyfedwards/nom";
description = "RSS reader for the terminal";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl3Only;
maintainers = with maintainers; [ nadir-ishiguro ];
mainProgram = "nom";
};
}