vimPlugins.vim-stylish-haskell: Patch path to executable

This commit is contained in:
Silvan Mosberger 2019-03-26 22:08:21 +01:00
parent 607b0a1fa8
commit f214efa6f1
No known key found for this signature in database
GPG Key ID: 9424360B4B85C9E7

View File

@ -2,7 +2,7 @@
, python, cmake, meson, vim, ruby
, which, fetchgit, fetchurl
, llvmPackages, rustPlatform
, xkb-switch, fzf, skim
, xkb-switch, fzf, skim, stylish-haskell
, python3, boost, icu, ncurses
, ycmd, rake
, gobject-introspection, glib, wrapGAppsHook
@ -405,4 +405,12 @@ self: super: {
};
});
vim-stylish-haskell = super.vim-stylish-haskell.overrideAttrs (old: {
postPatch = old.postPatch or "" + ''
substituteInPlace ftplugin/haskell/stylish-haskell.vim --replace \
'g:stylish_haskell_command = "stylish-haskell"' \
'g:stylish_haskell_command = "${stylish-haskell}/bin/stylish-haskell"'
'';
});
}