mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
27 lines
643 B
Nix
27 lines
643 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "nom";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guyfedwards";
|
|
repo = "nom";
|
|
rev = "v${version}";
|
|
hash = "sha256-V4ppqHQjPkkRKHkDHzEr05vOyv3BhiLnYxEftIn08XU=";
|
|
};
|
|
|
|
vendorHash = "sha256-xolhwdWRjYZMgwI4jq0fGzvxnNjx6EplvZC7XMvBw+M=";
|
|
|
|
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";
|
|
};
|
|
}
|