vim_configurable: Add vi symlink to vim
This commit is contained in:
parent
1b53f78ef5
commit
3de2aeb519
@ -145,7 +145,12 @@ in stdenv.mkDerivation rec {
|
|||||||
cp ${vimPlugins.vim-nix.src}/syntax/nix.vim runtime/syntax/nix.vim
|
cp ${vimPlugins.vim-nix.src}/syntax/nix.vim runtime/syntax/nix.vim
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p $out/share/applications $out/share/icons/{hicolor,locolor}/{16x16,32x32,48x48}/apps
|
||||||
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
ln -s $out/bin/vim $out/bin/vi
|
||||||
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
||||||
patchelf --set-rpath \
|
patchelf --set-rpath \
|
||||||
"$(patchelf --print-rpath $out/bin/vim):${stdenv.lib.makeLibraryPath buildInputs}" \
|
"$(patchelf --print-rpath $out/bin/vim):${stdenv.lib.makeLibraryPath buildInputs}" \
|
||||||
@ -177,9 +182,5 @@ in stdenv.mkDerivation rec {
|
|||||||
rewrap gvimdiff -gd
|
rewrap gvimdiff -gd
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preInstall = ''
|
dontStrip = true;
|
||||||
mkdir -p $out/share/applications $out/share/icons/{hicolor,locolor}/{16x16,32x32,48x48}/apps
|
|
||||||
'';
|
|
||||||
|
|
||||||
dontStrip = 1;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user