From e203a9a553fb4e1218ca15a57a0b7944abeacbca Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Wed, 9 May 2018 02:51:59 -0500 Subject: [PATCH] pthread-w32: add missing args Fixes #40207 --- pkgs/os-specific/windows/pthread-w32/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/windows/pthread-w32/default.nix b/pkgs/os-specific/windows/pthread-w32/default.nix index f0b6852d5bf9..ef42dadc2973 100644 --- a/pkgs/os-specific/windows/pthread-w32/default.nix +++ b/pkgs/os-specific/windows/pthread-w32/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, mingw_headers }: +{ fetchurl, stdenv, mingw_header, hostPlatform, buildPlatform }: # This file is tweaked for cross-compilation only. assert hostPlatform != buildPlatform;