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 ];
doConfigure = false;
doBuild = false;
dontStrip = true;
dontPatchELF = true;

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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