Merge pull request #130501 from SuperSandro2000/remove-noop-phases-mass

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

authored by Sandro and committed by GitHub d0f62aae 853d235a

+5 -5
+1 -1
pkgs/development/python-modules/bootstrapped-pip/2.nix
··· 30 nativeBuildInputs = [ makeWrapper unzip ]; 31 buildInputs = [ python ]; 32 33 - buildPhase = ":"; 34 35 installPhase = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) '' 36 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
··· 30 nativeBuildInputs = [ makeWrapper unzip ]; 31 buildInputs = [ python ]; 32 33 + dontBuild = true; 34 35 installPhase = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) '' 36 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
+1 -1
pkgs/development/python-modules/bootstrapped-pip/default.nix
··· 30 nativeBuildInputs = [ makeWrapper unzip ]; 31 buildInputs = [ python ]; 32 33 - buildPhase = ":"; 34 35 installPhase = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) '' 36 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
··· 30 nativeBuildInputs = [ makeWrapper unzip ]; 31 buildInputs = [ python ]; 32 33 + dontBuild = true; 34 35 installPhase = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) '' 36 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
+2 -2
pkgs/misc/vim-plugins/build-vim-plugin.nix
··· 54 })); 55 56 buildVimPluginFrom2Nix = attrs: buildVimPlugin ({ 57 - buildPhase = ":"; 58 - configurePhase =":"; 59 } // attrs); 60 }
··· 54 })); 55 56 buildVimPluginFrom2Nix = attrs: buildVimPlugin ({ 57 + dontBuild = true; 58 + dontConfigure = true; 59 } // attrs); 60 }
+1 -1
pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix
··· 1 { lib, appleDerivation }: 2 3 appleDerivation { 4 - buildPhase = ":"; 5 6 # install headers only 7 installPhase = ''
··· 1 { lib, appleDerivation }: 2 3 appleDerivation { 4 + dontBuild = true; 5 6 # install headers only 7 installPhase = ''