about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
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/development/haskell-modules
parentecab3edeb79a5257974d24acd04e5c9b3c245e6c (diff)
downloadnixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar
nixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.gz
nixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.bz2
nixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.lz
nixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.xz
nixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.tar.zst
nixlib-2eeb34c2737f5eb8a2796701584a7b0551cb053a.zip
treewide: {build,host,target}Platform -> stdenv.{build,host,target}Platform
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 6cbc88547bc3..31e24ed70b17 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -452,7 +452,7 @@ self: super: {
   #
   # # Depends on itself for testing
   # doctest-discover = addBuildTool super.doctest-discover
-  #   (if pkgs.buildPlatform != pkgs.hostPlatform
+  #   (if pkgs.stdenv.buildPlatform != pkgs.stdenv.hostPlatform
   #    then self.buildHaskellPackages.doctest-discover
   #    else dontCheck super.doctest-discover);
   doctest-discover = dontCheck super.doctest-discover;