From 559832d6633510ad60b0fb473e1a5066d0610446 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Wed, 14 Mar 2018 19:51:09 -0400 Subject: [PATCH] isDarwin: make usage consistent This one was the only one of the form pkgs.stdenv._hostPlatform_.isDarwin. --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f66cff3bb11..ee8c65b3d3c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -94,7 +94,7 @@ self: super: { # the tests for shell-conduit on Darwin illegitimatey assume non-GNU echo # see: https://github.com/psibi/shell-conduit/issues/12 - doCheck = !pkgs.stdenv.hostPlatform.isDarwin; + doCheck = !pkgs.stdenv.isDarwin; })); # https://github.com/froozen/kademlia/issues/2