mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 23:23:36 +00:00
![Nadir Ishiguro](/assets/img/avatar_default.png)
Changelog: - https://github.com/guyfedwards/nom/releases/tag/v2.1.5 - https://github.com/guyfedwards/nom/releases/tag/v2.1.6
28 lines
642 B
Nix
28 lines
642 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "nom";
|
|
version = "2.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guyfedwards";
|
|
repo = "nom";
|
|
rev = "v${version}";
|
|
hash = "sha256-NOPzznopH+PeSEMzO1vMHOSbmy9/v2yT4VC4kAsdbGw";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|