lol

Merge pull request #194240 from figsoda/fix-command-t

vimPlugins.command-t: fix build on darwin

authored by

Christian Kögler and committed by
GitHub
a7f19b2b fd323dfe

+4 -2
+4 -2
pkgs/applications/editors/vim/plugins/overrides.nix
··· 53 53 , zsh 54 54 55 55 # command-t dependencies 56 + , getconf 56 57 , ruby 57 58 58 59 # cpsm dependencies ··· 239 240 }; 240 241 241 242 command-t = super.command-t.overrideAttrs (old: { 242 - buildInputs = [ ruby ]; 243 + nativeBuildInputs = [ getconf ruby ]; 243 244 buildPhase = '' 244 245 substituteInPlace lua/wincent/commandt/lib/Makefile \ 245 - --replace '/bin/bash' 'bash' 246 + --replace '/bin/bash' 'bash' \ 247 + --replace xcrun "" 246 248 make build 247 249 rm ruby/command-t/ext/command-t/*.o 248 250 '';