summary refs log tree commit diff
path: root/pkgs/os-specific/windows
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-02-24 04:43:00 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-02-24 07:26:23 +0100
commit4fde72c7d64c78de2e41ba91153cebb907e63100 (patch)
tree00c020db114714c5177b866b0ed8358c54b47241 /pkgs/os-specific/windows
parent423be7712bb710f10f2eb8198bae97e5aeb5f1fe (diff)
downloadnixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.tar
nixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.tar.gz
nixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.tar.bz2
nixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.tar.lz
nixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.tar.xz
nixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.tar.zst
nixlib-4fde72c7d64c78de2e41ba91153cebb907e63100.zip
mingw-w64: Fix typo in preConfigure hook.
D'oh, no wonder the headers are of almost the same size as the main
package.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/os-specific/windows')
-rw-r--r--pkgs/os-specific/windows/mingw-w64/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/windows/mingw-w64/default.nix b/pkgs/os-specific/windows/mingw-w64/default.nix
index 0d7beb532fe7..f1c509a50984 100644
--- a/pkgs/os-specific/windows/mingw-w64/default.nix
+++ b/pkgs/os-specific/windows/mingw-w64/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation (rec {
 } //
 (if onlyHeaders then {
   name = name + "-headers";
-  preConfingure = ''
+  preConfigure = ''
     cd mingw-w64-headers
   '';
   configureFlags = "--without-crt --host=x86_64-w64-mingw32";