Partial revert "Convert phases that contain ":" to dont* = true"

This reverts commit dc48d23a0f.

This deactivated custom build phases in many vim plugins overrides.
Also we could change our overrides it may break out-of-tree usage.
This commit is contained in:
Jörg Thalheim 2021-08-05 07:24:13 +02:00 committed by Sandro Jäckel
parent 48ad5bae56
commit 9ec1f8f88f
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -54,7 +54,8 @@ rec {
}));
buildVimPluginFrom2Nix = attrs: buildVimPlugin ({
dontBuild = true;
dontConfigure = true;
# vim plugins may override this
buildPhase = ":";
configurePhase =":";
} // attrs);
}