summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/headers.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2017-06-19 11:51:01 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-06-22 17:53:51 -0400
commitbb7067f882bf3c53ea68780a8ec0a7117f563253 (patch)
tree02be64697b37a74b462fc977a86737119d15a780 /pkgs/os-specific/windows/mingw-w64/headers.nix
parentc2e2152afc513fa4eda51b96dc5c7f349c3497da (diff)
downloadnixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.tar
nixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.tar.gz
nixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.tar.bz2
nixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.tar.lz
nixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.tar.xz
nixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.tar.zst
nixpkgs-bb7067f882bf3c53ea68780a8ec0a7117f563253.zip
mingw-w64: Clean up, especially clarifying staging
Diffstat (limited to 'pkgs/os-specific/windows/mingw-w64/headers.nix')
-rw-r--r--pkgs/os-specific/windows/mingw-w64/headers.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/os-specific/windows/mingw-w64/headers.nix b/pkgs/os-specific/windows/mingw-w64/headers.nix
new file mode 100644
index 00000000000..03dbf712e2e
--- /dev/null
+++ b/pkgs/os-specific/windows/mingw-w64/headers.nix
@@ -0,0 +1,13 @@
+{ stdenvNoCC, callPackage }:
+
+let
+  inherit (callPackage ./common.nix {}) name src;
+
+in stdenvNoCC.mkDerivation {
+  name = name + "-headers";
+  inherit src;
+
+  preConfigure = ''
+    cd mingw-w64-headers
+  '';
+}