mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
28 lines
643 B
Nix
28 lines
643 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "nom";
|
|
version = "2.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guyfedwards";
|
|
repo = "nom";
|
|
rev = "v${version}";
|
|
hash = "sha256-W0HDoQURZxTvMyFfRGOu8gcZJihtvXvrEaObmi/CAk0=";
|
|
};
|
|
|
|
vendorHash = "sha256-wWdsLU656wBAUmnVw21wo+a/OLmyhZ2Bq0j8S190XQs=";
|
|
|
|
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";
|
|
};
|
|
}
|