nom: 2.10.0 -> 2.13.0 (#424441)

This commit is contained in:
Matthias Beyer 2025-07-16 13:45:03 +02:00 committed by GitHub
commit 5cecb56a8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,26 +2,34 @@
lib, lib,
buildGoModule, buildGoModule,
fetchFromGitHub, fetchFromGitHub,
nix-update-script,
}: }:
buildGoModule rec { buildGoModule rec {
pname = "nom"; pname = "nom";
version = "2.10.0"; version = "2.13.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "guyfedwards"; owner = "guyfedwards";
repo = "nom"; repo = "nom";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-F1lKBfDufotQjVNJ1yMosRl1UlGMBlYCTHXdCzeVflg="; hash = "sha256-dGQDxjvB5OX4ot22zt2zFu3T3h/clSRlfxhCpkPRePU=";
}; };
vendorHash = "sha256-d5KTDZKfuzv84oMgmsjJoXGO5XYLVKxOB5XehqgRvYw="; vendorHash = "sha256-d5KTDZKfuzv84oMgmsjJoXGO5XYLVKxOB5XehqgRvYw=";
meta = with lib; { ldflags = [
"-X 'main.version=${version}'"
];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/guyfedwards/nom"; homepage = "https://github.com/guyfedwards/nom";
changelog = "https://github.com/guyfedwards/nom/releases/tag/v${version}";
description = "RSS reader for the terminal"; description = "RSS reader for the terminal";
platforms = platforms.linux ++ platforms.darwin; platforms = lib.platforms.linux ++ lib.platforms.darwin;
license = licenses.gpl3Only; license = lib.licenses.gpl3Only;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
nadir-ishiguro nadir-ishiguro
matthiasbeyer matthiasbeyer
]; ];