mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
neovim-remote: move from python-packages to /neovim/neovim-remote.
This commit is contained in:
parent
c1604543bf
commit
b2fb95a6cf
16
pkgs/applications/editors/neovim/neovim-remote.nix
Normal file
16
pkgs/applications/editors/neovim/neovim-remote.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
}
|
@ -15385,6 +15385,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;
|
||||||
};
|
};
|
||||||
|
@ -29771,23 +29771,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…
Reference in New Issue
Block a user