summary refs log tree commit diff
path: root/pkgs/os-specific/windows
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-05-09 02:51:59 -0500
committerGitHub <noreply@github.com>2018-05-09 02:51:59 -0500
commite203a9a553fb4e1218ca15a57a0b7944abeacbca (patch)
tree6bb9815daaf79fd2ee4e7ae851052e5a2c6df700 /pkgs/os-specific/windows
parent04814672828d460baa2b60e7a41986a570824398 (diff)
downloadnixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.tar
nixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.tar.gz
nixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.tar.bz2
nixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.tar.lz
nixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.tar.xz
nixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.tar.zst
nixpkgs-e203a9a553fb4e1218ca15a57a0b7944abeacbca.zip
pthread-w32: add missing args
Fixes #40207
Diffstat (limited to 'pkgs/os-specific/windows')
-rw-r--r--pkgs/os-specific/windows/pthread-w32/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/windows/pthread-w32/default.nix b/pkgs/os-specific/windows/pthread-w32/default.nix
index f0b6852d5bf..ef42dadc297 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;