about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-01-09 22:15:50 +0200
committerGitHub <noreply@github.com>2023-01-09 22:15:50 +0200
commit27c1ec2ecff86cf04d15b44622074b907c64d076 (patch)
tree9bbf1e3f4968afd64789d62f0f0c4552656c06c5 /pkgs/development/haskell-modules
parentb326f62dcf5713f1d10b4c03da36dfa06ee7a72d (diff)
parent2eeb34c2737f5eb8a2796701584a7b0551cb053a (diff)
downloadnixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.tar
nixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.tar.gz
nixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.tar.bz2
nixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.tar.lz
nixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.tar.xz
nixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.tar.zst
nixlib-27c1ec2ecff86cf04d15b44622074b907c64d076.zip
Merge pull request #209816 from Artturin/deprecate-top-level-platform-aliases
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 5af3c76a9e3f..39ce0f254a5e 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -448,7 +448,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;