diff options
Diffstat (limited to 'overlay/vim-full.nix')
| -rw-r--r-- | overlay/vim-full.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/overlay/vim-full.nix b/overlay/vim-full.nix new file mode 100644 index 0000000..9a419b1 --- /dev/null +++ b/overlay/vim-full.nix @@ -0,0 +1,16 @@ +_: prev: { + vim-full = + if prev.stdenv.isLinux + then + prev.vimUtils.makeCustomizable ( + prev.symlinkJoin { + inherit (prev.vim-full) passthru; + name = "vim-nodesktop-${prev.vim-full.version}"; + paths = [prev.vim-full]; + postBuild = '' + rm -rf $out/share/{icons,applications} + ''; + } + ) + else prev.vim-full; +} |
