504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
26 lines
638 B
Nix
26 lines
638 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "nom";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guyfedwards";
|
|
repo = "nom";
|
|
rev = "v${version}";
|
|
hash = "sha256-RKuaMgPYBD2G9WOKvfb+hj01aBVsCP0eOXULE+JpLR8=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|