nixpkgs/pkgs/top-level/mingw.nix

11 lines
127 B
Nix
Executable file

let {
pkgs =
import ./all-packages.nix {
system = "i686-mingw";
};
body = {
inherit (pkgs) zlib;
};
}