3
0
Fork 0
forked from mirrors/nixpkgs

neovim-remote: add meta section.

Also add myself to maintainers; it's time to admit I'm not leaving
anytime soon ;)
This commit is contained in:
Evan Danaher 2017-02-10 11:43:42 -05:00
parent b2fb95a6cf
commit ee4f732633
2 changed files with 11 additions and 0 deletions
lib
pkgs/applications/editors/neovim

View file

@ -138,6 +138,7 @@
dtzWill = "Will Dietz <nix@wdtz.org>";
e-user = "Alexander Kahl <nixos@sodosopa.io>";
ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
edanaher = "Evan Danaher <nixos@edanaher.net>";
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
eduarrrd = "Eduard Bachmakov <e.bachmakov@gmail.com>";
edwtjo = "Edward Tjörnhammar <ed@cflags.cc>";

View file

@ -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;
};
}