summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/xcode/default.nix
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-01-09 05:36:01 +0200
committerArtturin <Artturin@artturin.com>2023-01-09 21:13:22 +0200
commit2eeb34c2737f5eb8a2796701584a7b0551cb053a (patch)
treebbd2d01a65ae344e46a8c91537f6a0f00257d410 /pkgs/os-specific/darwin/xcode/default.nix
parentecab3edeb79a5257974d24acd04e5c9b3c245e6c (diff)
downloadnixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar
nixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.gz
nixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.bz2
nixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.lz
nixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.xz
nixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.zst
nixpkgs-2eeb34c2737f5eb8a2796701584a7b0551cb053a.zip
treewide: {build,host,target}Platform -> stdenv.{build,host,target}Platform
Diffstat (limited to 'pkgs/os-specific/darwin/xcode/default.nix')
-rw-r--r--pkgs/os-specific/darwin/xcode/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/darwin/xcode/default.nix b/pkgs/os-specific/darwin/xcode/default.nix
index 2ce607896b5..6d1929ef982 100644
--- a/pkgs/os-specific/darwin/xcode/default.nix
+++ b/pkgs/os-specific/darwin/xcode/default.nix
@@ -1,10 +1,10 @@
-{ buildPlatform, requireFile, targetPlatform, lib }:
+{ stdenv, requireFile, lib }:
 
 let requireXcode = version: sha256:
   let
     xip = "Xcode_" + version +  ".xip";
     # TODO(alexfmpe): Find out how to validate the .xip signature in Linux
-    unxip = if buildPlatform.isDarwin
+    unxip = if stdenv.buildPlatform.isDarwin
             then ''
               open -W ${xip}
               rm -rf ${xip}
@@ -66,6 +66,6 @@ in lib.makeExtensible (self: {
   xcode_12_1 = requireXcode "12.1" "1widy74dk43wx8iqgd7arzf6q4kzdmaz8pfwymzs8chnq9dqr3wp";
   xcode_12_2 = requireXcode "12.2" "17i0wf4pwrxwfgjw7rpw9mcd59nkmys1k5h2rqsw81snzyxy9j0v";
   xcode_12_3 = requireXcode "12.3" "0kwf1y4llysf1p0nsbqyzccn7d77my0ldagr5fi3by4k0xy3d189";
-  xcode = self."xcode_${lib.replaceStrings ["."] ["_"] (if (targetPlatform ? xcodeVer) then targetPlatform.xcodeVer else "12.3")}";
+  xcode = self."xcode_${lib.replaceStrings ["."] ["_"] (if (stdenv.targetPlatform ? xcodeVer) then stdenv.targetPlatform.xcodeVer else "12.3")}";
 })