aboutsummaryrefslogtreecommitdiff
path: root/pkgs/stdenv/freebsd
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-08-21 18:26:08 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-08-21 18:40:41 -0400
commitc03571107213331494fb5330fd2bb4129d19cdbc (patch)
treee69519422b92fce01c39f00bf537ed9b20e9ce72 /pkgs/stdenv/freebsd
parent0ab717d5478dd608fe4e167016451e73d25d5469 (diff)
cc-wrapper: Remove unused params
Ensured hashes unchanged and eval succeeds in tarball job
Diffstat (limited to 'pkgs/stdenv/freebsd')
-rw-r--r--pkgs/stdenv/freebsd/default.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/pkgs/stdenv/freebsd/default.nix b/pkgs/stdenv/freebsd/default.nix
index d15afe761894..c10d1515a3d5 100644
--- a/pkgs/stdenv/freebsd/default.nix
+++ b/pkgs/stdenv/freebsd/default.nix
@@ -40,8 +40,6 @@ let inherit (localSystem) system; in
targetPlatform = localSystem;
inherit config;
initialPath = [ "/" "/usr" ];
- hostPlatform = localSystem;
- targetPlatform = localSystem;
shell = "${bootstrapTools}/bin/bash";
fetchurlBoot = null;
cc = null;
@@ -55,13 +53,11 @@ let inherit (localSystem) system; in
stdenv = import ../generic {
name = "stdenv-freebsd-boot-0";
- buildPlatform = localSystem;
- hostPlatform = localSystem;
- targetPlatform = localSystem;
inherit config;
initialPath = [ prevStage.bootstrapTools ];
inherit (prevStage.stdenv)
- hostPlatform targetPlatform shell;
+ buildPlatform hostPlatform targetPlatform
+ shell;
fetchurlBoot = prevStage.fetchurl;
cc = null;
};
@@ -71,13 +67,11 @@ let inherit (localSystem) system; in
inherit config overlays;
stdenv = import ../generic {
name = "stdenv-freebsd-boot-3";
- buildPlatform = localSystem;
- hostPlatform = localSystem;
- targetPlatform = localSystem;
inherit config;
inherit (prevStage.stdenv)
- hostPlatform targetPlatform initialPath shell fetchurlBoot;
+ buildPlatform hostPlatform targetPlatform
+ initialPath shell fetchurlBoot;
cc = import ../../build-support/cc-wrapper {
nativeTools = true;