about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/hadoop
diff options
context:
space:
mode:
authorConnor Baker <connorbaker01@gmail.com>2022-02-10 20:58:12 -0500
committerConnor Baker <connorbaker01@gmail.com>2022-02-14 08:20:37 -0500
commite752dfc6fbae10ffb71673e0b0c6ecef3aee5cf5 (patch)
tree745bb4fc0cc313583fc34a3f7ea367cfce03637b /pkgs/applications/networking/cluster/hadoop
parent50c8089b2809b31581679a9e911357b9d4eadb13 (diff)
hadoop: Group attrset update to ensure completion before passing to common
Diffstat (limited to 'pkgs/applications/networking/cluster/hadoop')
-rw-r--r--pkgs/applications/networking/cluster/hadoop/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/networking/cluster/hadoop/default.nix b/pkgs/applications/networking/cluster/hadoop/default.nix
index b5aa6b4443642..e81c6ae308f68 100644
--- a/pkgs/applications/networking/cluster/hadoop/default.nix
+++ b/pkgs/applications/networking/cluster/hadoop/default.nix
@@ -77,7 +77,7 @@ in
   # https://cwiki.apache.org/confluence/display/HADOOP/Hadoop+Java+Versions
   hadoop_3_3 =
     common
-      rec {
+      (rec {
         pname = "hadoop";
         version = "3.3.1";
         untarDir = "${pname}-${version}";
@@ -97,14 +97,14 @@ in
         '';
         jdk = jdk11_headless;
       } // optionalAttrs stdenv.isDarwin {
-      sha256 = {
-        x86_64-darwin = "1b3v16ihysqaxw8za1r5jlnphy8dwhivdx2d0z64309w57ihlxxd";
-        aarch64-darwin = "00ln18vpi07jq2slk3kplyhcj8ad41n0yl880q5cihilk7daclxz";
-      };
-      openssl = null;
-      nativeLibs = [ ];
-      libPatches = "";
-    };
+        sha256 = {
+          x86_64-darwin = "1b3v16ihysqaxw8za1r5jlnphy8dwhivdx2d0z64309w57ihlxxd";
+          aarch64-darwin = "00ln18vpi07jq2slk3kplyhcj8ad41n0yl880q5cihilk7daclxz";
+        };
+        openssl = null;
+        nativeLibs = [ ];
+        libPatches = "";
+      });
   hadoop_3_2 = common rec {
     pname = "hadoop";
     version = "3.2.2";