about summary refs log tree commit diff
path: root/pkgs/top-level/mingw.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/top-level/mingw.nix')
-rwxr-xr-xpkgs/top-level/mingw.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/top-level/mingw.nix b/pkgs/top-level/mingw.nix
new file mode 100755
index 000000000000..a95e146b003b
--- /dev/null
+++ b/pkgs/top-level/mingw.nix
@@ -0,0 +1,10 @@
+let {
+  pkgs =
+    import ./all-packages.nix {
+      system = "i686-mingw";
+    };
+
+  body = {
+    inherit (pkgs) zlib;
+  };
+}