Merge pull request #266742 from nadir-ishiguro/init-nom

nom: init at 2.0.2
This commit is contained in:
Matthias Beyer 2023-11-16 21:58:33 +01:00 committed by GitHub
commit 14a183dece
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -12481,6 +12481,11 @@
fingerprint = "9E6A 25F2 C1F2 9D76 ED00 1932 1261 173A 01E1 0298";
}];
};
nadir-ishiguro = {
github = "nadir-ishiguro";
githubId = 23151917;
name = "nadir-ishiguro";
};
nadrieril = {
email = "nadrieril@gmail.com";
github = "Nadrieril";

View File

@ -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";
};
}