treewide: remove uses of doBuild and doConfigure

doBuild and doConfigure are not actually used by any builders, they were
probably added by mistake and just confuse people.
This commit is contained in:
Milan Pässler (work) 2019-09-02 23:39:57 +02:00
parent ea3bae4f4d
commit 185fd61631
9 changed files with 0 additions and 16 deletions

View File

@ -78,8 +78,6 @@ stdenv.mkDerivation {
buildInputs = [ squashfsTools makeWrapper ]; buildInputs = [ squashfsTools makeWrapper ];
doConfigure = false;
doBuild = false;
dontStrip = true; dontStrip = true;
dontPatchELF = true; dontPatchELF = true;

View File

@ -9,8 +9,6 @@ stdenv.mkDerivation {
outputs = [ "out" "man" ]; outputs = [ "out" "man" ];
doBuild = false;
installPhase = '' installPhase = ''
mkdir -p \ mkdir -p \
"$out/bin" \ "$out/bin" \

View File

@ -36,9 +36,6 @@ let
qtbase qtdeclarative qtsvg qtlocation qtwebchannel qtwebengine qtbase qtdeclarative qtsvg qtlocation qtwebchannel qtwebengine
]; ];
doConfigure = false;
doBuild = false;
installPhase = '' installPhase = ''
# Extract eagle tarball # Extract eagle tarball
mkdir "$out" mkdir "$out"

View File

@ -56,8 +56,6 @@ stdenv.mkDerivation {
} }
''; '';
doConfigure = false;
buildPhase = '' buildPhase = ''
# Build kernel modules. # Build kernel modules.
cd src cd src

View File

@ -19,8 +19,6 @@ let
runHook postUnpack runHook postUnpack
''; '';
doConfigure = false;
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall

View File

@ -15,7 +15,6 @@ stdenv.mkDerivation rec {
xmpppy pythonIRClib xmpppy pythonIRClib
]; ];
/* doConfigure should be removed if not needed */
# phaseNames = ["deploy" (a.makeManyWrappers "$out/share/${name}/irc.py" a.pythonWrapperArguments)]; # phaseNames = ["deploy" (a.makeManyWrappers "$out/share/${name}/irc.py" a.pythonWrapperArguments)];
installPhase = '' installPhase = ''

View File

@ -14,7 +14,6 @@ stdenv.mkDerivation rec {
pythonPath = [ xmpppy ]; pythonPath = [ xmpppy ];
buildInputs = [ pythonPackages.wrapPython ]; buildInputs = [ pythonPackages.wrapPython ];
/* doConfigure should be removed if not needed */
installPhase = '' installPhase = ''
cd mail-transport cd mail-transport
mkdir -p $out/bin $out/share/${pname}-${version} mkdir -p $out/bin $out/share/${pname}-${version}

View File

@ -36,8 +36,6 @@ in stdenv.mkDerivation rec {
buildInputs = [ python makeWrapper ]; buildInputs = [ python makeWrapper ];
doBuild = false;
patches = [ patches = [
./gcloud-path.patch ./gcloud-path.patch
]; ];

View File

@ -19,7 +19,6 @@ let
done done
''; '';
doBuild = false;
doCheck = true; doCheck = true;
doInstallCheck = true; doInstallCheck = true;