{ lib, buildGoModule, fetchFromGitHub, }: buildGoModule rec { pname = "nom"; version = "2.2.1"; src = fetchFromGitHub { owner = "guyfedwards"; repo = "nom"; rev = "v${version}"; hash = "sha256-AAgkxBbGH45n140jm28+J3hqYxzUIL6IVLGWD9oBexo="; }; 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"; }; }