about summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/default.nix
blob: 6e21826381b6d64d91cabc6f1d32243e2908961b (plain) (blame)
1
2
3
4
5
6
7
{ stdenv, callPackage, windows }:

stdenv.mkDerivation {
  inherit (callPackage ./common.nix {}) name src;
  buildInputs = [ windows.mingw_w64_headers ];
  dontStrip = true;
}