neovim-remote: move from python-packages to /neovim/neovim-remote.

wip/yesman
Evan Danaher 7 years ago
parent c1604543bf
commit b2fb95a6cf
  1. 16
      pkgs/applications/editors/neovim/neovim-remote.nix
  2. 2
      pkgs/top-level/all-packages.nix
  3. 17
      pkgs/top-level/python-packages.nix

@ -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-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { pythonPackages = python3Packages; };
vis = callPackage ../applications/editors/vis {
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 {
version = "0.4.1";
name = "ghp-import-${version}";

Loading…
Cancel
Save