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

launchpad/nixpkgs/master
Sandro Jäckel 3 years ago
parent dbed958bf2
commit dc48d23a0f
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 2
      pkgs/development/python-modules/bootstrapped-pip/2.nix
  2. 2
      pkgs/development/python-modules/bootstrapped-pip/default.nix
  3. 4
      pkgs/misc/vim-plugins/build-vim-plugin.nix
  4. 2
      pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = [ python ];
buildPhase = ":";
dontBuild = true;
installPhase = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) ''
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = [ python ];
buildPhase = ":";
dontBuild = true;
installPhase = lib.strings.optionalString (!stdenv.hostPlatform.isWindows) ''
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0

@ -54,7 +54,7 @@ rec {
}));
buildVimPluginFrom2Nix = attrs: buildVimPlugin ({
buildPhase = ":";
configurePhase =":";
dontBuild = true;
dontConfigure = true;
} // attrs);
}

@ -1,7 +1,7 @@
{ lib, appleDerivation }:
appleDerivation {
buildPhase = ":";
dontBuild = true;
# install headers only
installPhase = ''

Loading…
Cancel
Save