From ee4f732633363cbe238683f836ca6e42049200f8 Mon Sep 17 00:00:00 2001 From: Evan Danaher Date: Fri, 10 Feb 2017 11:43:42 -0500 Subject: [PATCH] neovim-remote: add meta section. Also add myself to maintainers; it's time to admit I'm not leaving anytime soon ;) --- lib/maintainers.nix | 1 + pkgs/applications/editors/neovim/neovim-remote.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 4672dc59d43..70532778201 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -138,6 +138,7 @@ dtzWill = "Will Dietz "; e-user = "Alexander Kahl "; ebzzry = "Rommel Martinez "; + edanaher = "Evan Danaher "; ederoyd46 = "Matthew Brown "; eduarrrd = "Eduard Bachmakov "; edwtjo = "Edward Tjörnhammar "; diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix index 2ee269156bb..487d9c842b8 100644 --- a/pkgs/applications/editors/neovim/neovim-remote.nix +++ b/pkgs/applications/editors/neovim/neovim-remote.nix @@ -1,5 +1,7 @@ { stdenv, fetchFromGitHub, pythonPackages }: +with stdenv.lib; + pythonPackages.buildPythonPackage rec { name = "neovim-remote-${version}"; version = "v1.4.0"; @@ -13,4 +15,12 @@ pythonPackages.buildPythonPackage rec { }; propagatedBuildInputs = [ pythonPackages.neovim ]; + + meta = { + description = "A tool that helps controlling nvim processes from a terminal"; + homepage = https://github.com/mhinz/neovim-remote/; + license = licenses.mit; + maintainers = with maintainers; [ edanaher ]; + platforms = platforms.unix; + }; }