mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
14 lines
211 B
Nix
14 lines
211 B
Nix
{ stdenvNoCC, callPackage }:
|
|
|
|
let
|
|
inherit (callPackage ./common.nix {}) name src;
|
|
|
|
in stdenvNoCC.mkDerivation {
|
|
name = name + "-headers";
|
|
inherit src;
|
|
|
|
preConfigure = ''
|
|
cd mingw-w64-headers
|
|
'';
|
|
}
|