summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/headers.nix
blob: 03dbf712e2e51ec6b457cbc69bae0b8bdb0a187a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenvNoCC, callPackage }:

let
  inherit (callPackage ./common.nix {}) name src;

in stdenvNoCC.mkDerivation {
  name = name + "-headers";
  inherit src;

  preConfigure = ''
    cd mingw-w64-headers
  '';
}