mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, neovim
|
|
, fetchpatch
|
|
}:
|
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
|
pname = "neovim-remote";
|
|
version = "2.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhinz";
|
|
repo = "neovim-remote";
|
|
rev = "v${version}";
|
|
hash = "sha256-uO5KezbUQGj3rNpuw2SJOzcP86DZqX7DJFz3BxEnf1E=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix a compatibility issue with neovim 0.8.0
|
|
(fetchpatch {
|
|
url = "https://github.com/mhinz/neovim-remote/commit/56d2a4097f4b639a16902390d9bdd8d1350f948c.patch";
|
|
hash = "sha256-/PjE+9yfHtOUEp3xBaobzRM8Eo2wqOhnF1Es7SIdxvM=";
|
|
})
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pynvim
|
|
psutil
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
neovim
|
|
pytestCheckHook
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
preCheck = ''
|
|
export HOME="$(mktemp -d)"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
mainProgram = "nvr";
|
|
};
|
|
}
|