1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

vimPlugins.vim-yapf: fix evaluation

This commit is contained in:
Jörg Thalheim 2017-12-09 10:27:16 +00:00
parent 61a177a517
commit f7c7a4cde1
2 changed files with 2 additions and 2 deletions

View file

@ -1273,7 +1273,7 @@ rec {
dependencies = [];
buildPhase = ''
substituteInPlace ftplugin/python_yapf.vim \
--replace '"yapf"' '"${pkgs.yapf}/bin/yapf"'
--replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"'
'';
};

View file

@ -1,4 +1,4 @@
buildPhase = ''
substituteInPlace ftplugin/python_yapf.vim \
--replace '"yapf"' '"${pkgs.yapf}/bin/yapf"'
--replace '"yapf"' '"${python3Packages.yapf}/bin/yapf"'
'';