Merge pull request #22417 from edanaher/move-neovim-remote
neovim-remote: move from python-packages to /neovim/neovim-remote.
This commit is contained in:
commit
c9f4d714fe
@ -140,6 +140,7 @@
|
|||||||
dtzWill = "Will Dietz <nix@wdtz.org>";
|
dtzWill = "Will Dietz <nix@wdtz.org>";
|
||||||
e-user = "Alexander Kahl <nixos@sodosopa.io>";
|
e-user = "Alexander Kahl <nixos@sodosopa.io>";
|
||||||
ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
|
ebzzry = "Rommel Martinez <ebzzry@gmail.com>";
|
||||||
|
edanaher = "Evan Danaher <nixos@edanaher.net>";
|
||||||
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
|
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
|
||||||
eduarrrd = "Eduard Bachmakov <e.bachmakov@gmail.com>";
|
eduarrrd = "Eduard Bachmakov <e.bachmakov@gmail.com>";
|
||||||
edwtjo = "Edward Tjörnhammar <ed@cflags.cc>";
|
edwtjo = "Edward Tjörnhammar <ed@cflags.cc>";
|
||||||
|
26
pkgs/applications/editors/neovim/neovim-remote.nix
Normal file
26
pkgs/applications/editors/neovim/neovim-remote.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
pythonPackages.buildPythonPackage rec {
|
||||||
|
name = "neovim-remote-${version}";
|
||||||
|
version = "v1.4.0";
|
||||||
|
disabled = !pythonPackages.isPy3k;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mhinz";
|
||||||
|
repo = "neovim-remote";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0msvfh27f56xj5ki59ikzavxz863nal5scm57n43618m49qzg8iz";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -15408,6 +15408,8 @@ with pkgs;
|
|||||||
|
|
||||||
neovim-pygui = pythonPackages.neovim_gui;
|
neovim-pygui = pythonPackages.neovim_gui;
|
||||||
|
|
||||||
|
neovim-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { pythonPackages = python3Packages; };
|
||||||
|
|
||||||
vis = callPackage ../applications/editors/vis {
|
vis = callPackage ../applications/editors/vis {
|
||||||
inherit (lua52Packages) lpeg;
|
inherit (lua52Packages) lpeg;
|
||||||
};
|
};
|
||||||
|
@ -30001,23 +30001,6 @@ EOF
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
neovim-remote = buildPythonPackage rec {
|
|
||||||
name = "neovim-remote-${version}";
|
|
||||||
version = "v1.4.0";
|
|
||||||
disabled = !isPy3k;
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "mhinz";
|
|
||||||
repo = "neovim-remote";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "0msvfh27f56xj5ki59ikzavxz863nal5scm57n43618m49qzg8iz";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
self.neovim
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
ghp-import = buildPythonPackage rec {
|
ghp-import = buildPythonPackage rec {
|
||||||
version = "0.4.1";
|
version = "0.4.1";
|
||||||
name = "ghp-import-${version}";
|
name = "ghp-import-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user