summary refs log tree commit diff
path: root/pkgs/os-specific/windows/w32api/default.nix
blob: 2fe989bb2f49f5665931472ed620e58d1a481e09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, xz, lib }:

stdenv.mkDerivation rec {
  name = "w32api-3.17-2";

  src = fetchurl {
    url = "mirror://sourceforge/mingw/MinGW/Base/w32api/w32api-3.17/${name}-mingw32-src.tar.lzma";
    sha256 = "09rhnl6zikmdyb960im55jck0rdy5z9nlg3akx68ixn7khf3j8wb";
  };

  meta = {
    platforms = lib.platforms.windows;
  };

  dontStrip = true;
}