summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/hadoop
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-06-19 11:36:06 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-07-01 04:23:51 -0400
commitcab7c6cbd964a99db55ba55960c8ddbaf294bc67 (patch)
tree34b0121cc741fae8995d84a5578494eca3858377 /pkgs/applications/networking/cluster/hadoop
parentc79ec3323e9eee544217742df1e032bb5b601296 (diff)
treewide: use dontConfigure
Diffstat (limited to 'pkgs/applications/networking/cluster/hadoop')
-rw-r--r--pkgs/applications/networking/cluster/hadoop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/hadoop/default.nix b/pkgs/applications/networking/cluster/hadoop/default.nix
index dfe6513bf0c1..42c043d0007f 100644
--- a/pkgs/applications/networking/cluster/hadoop/default.nix
+++ b/pkgs/applications/networking/cluster/hadoop/default.nix
@@ -19,7 +19,7 @@ let
# perform fake build to make a fixed-output derivation of dependencies downloaded from maven central (~100Mb in ~3000 files)
fetched-maven-deps = stdenv.mkDerivation {
name = "hadoop-${version}-maven-deps";
- inherit src postUnpack nativeBuildInputs buildInputs configurePhase;
+ inherit src postUnpack nativeBuildInputs buildInputs;
buildPhase = ''
while mvn package -Dmaven.repo.local=$out/.m2 ${mavenFlags} -Dmaven.wagon.rto=5000; [ $? = 1 ]; do
echo "timeout, restart maven to continue downloading"
@@ -51,7 +51,7 @@ let
fi
done
'';
- configurePhase = "true"; # do not trigger cmake hook
+ dontConfigure = true; # do not trigger cmake hook
mavenFlags = "-Drequire.snappy -Drequire.bzip2 -DskipTests -Pdist,native -e";
buildPhase = ''
# 'maven.repo.local' must be writable