summary refs log tree commit diff
path: root/pkgs/stdenv/generic
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-01-28 11:38:30 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2019-01-28 11:38:30 -0500
commite2fe4c2d496764b4dbfa5af78d58741efe3ddfa4 (patch)
treeb4b9531de22f643bd51d756ed046b22ca4f624f2 /pkgs/stdenv/generic
parentfebda2b127ce34b6b408fe65a7c6b86923e97114 (diff)
downloadnixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.tar
nixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.tar.gz
nixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.tar.bz2
nixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.tar.lz
nixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.tar.xz
nixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.tar.zst
nixpkgs-e2fe4c2d496764b4dbfa5af78d58741efe3ddfa4.zip
make-derivation: fix ordering of conditionals
cross should have higher precedence
Diffstat (limited to 'pkgs/stdenv/generic')
-rw-r--r--pkgs/stdenv/generic/make-derivation.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/stdenv/generic/make-derivation.nix b/pkgs/stdenv/generic/make-derivation.nix
index f9792aaf01f..1cb5639debe 100644
--- a/pkgs/stdenv/generic/make-derivation.nix
+++ b/pkgs/stdenv/generic/make-derivation.nix
@@ -177,14 +177,14 @@ rec {
            "checkInputs" "installCheckInputs"
            "__impureHostDeps" "__propagatedImpureHostDeps"
            "sandboxProfile" "propagatedSandboxProfile"])
-        // (lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform && !dontAddHostSuffix)) {
+        // (lib.optionalAttrs (name == "")) {
+          name = "${attrs.pname}-${attrs.version}";
+        } // (lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform && !dontAddHostSuffix)) {
           # Fixed-output derivations like source tarballs shouldn't get a host
           # suffix. But we have some weird ones with run-time deps that are
           # just used for their side-affects. Those might as well since the
           # hash can't be the same. See #32986.
           name = "${if name != "" then name else "${attrs.pname}-${attrs.version}"}-${stdenv.hostPlatform.config}";
-        } // (lib.optionalAttrs (name == "")) {
-          name = "${attrs.pname}-${attrs.version}";
         } // {
           builder = attrs.realBuilder or stdenv.shell;
           args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)];