mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
1550417b51
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/neovim-remote/versions
27 lines
702 B
Nix
27 lines
702 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
with stdenv.lib;
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "neovim-remote";
|
|
version = "2.2.2";
|
|
disabled = !pythonPackages.isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhinz";
|
|
repo = "neovim-remote";
|
|
rev = "v${version}";
|
|
sha256 = "129yjpwn6480rd5na866h4mcr6rf60rqv651hks5fn3ws112n751";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pynvim 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;
|
|
};
|
|
}
|