mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
26 lines
703 B
Nix
26 lines
703 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
with stdenv.lib;
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
name = "neovim-remote-${version}";
|
|
version = "v1.6.0";
|
|
disabled = !pythonPackages.isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhinz";
|
|
repo = "neovim-remote";
|
|
rev = version;
|
|
sha256 = "0x01zpmxi37jr7j2az2bd8902h7zhkpg6kpvc8xmll9f7703zz2l";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ neovim psutil ];
|
|
|
|
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;
|
|
};
|
|
}
|