windows.w32api: drop (#430157)

This commit is contained in:
John Ericson 2025-08-01 16:31:17 -04:00 committed by GitHub
commit 14f612c41f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 28 deletions

View File

@ -12,8 +12,6 @@ lib.makeScope newScope (
self: with self; { self: with self; {
dlfcn = callPackage ./dlfcn { }; dlfcn = callPackage ./dlfcn { };
w32api = callPackage ./w32api { };
mingw_w64 = callPackage ./mingw-w64 { mingw_w64 = callPackage ./mingw-w64 {
stdenv = stdenvNoLibc; stdenv = stdenvNoLibc;
}; };

View File

@ -1,26 +0,0 @@
{
stdenv,
fetchurl,
lib,
}:
stdenv.mkDerivation rec {
pname = "w32api";
version = "3.17-2";
src = fetchurl {
url = "mirror://sourceforge/mingw/MinGW/Base/w32api/w32api-${lib.versions.majorMinor version}/w32api-${version}-mingw32-src.tar.lzma";
sha256 = "09rhnl6zikmdyb960im55jck0rdy5z9nlg3akx68ixn7khf3j8wb";
};
dontStrip = true;
meta = {
description = "Core win32 headers and libraries for MinGW";
downloadPage = "https://sourceforge.net/projects/mingw/files/MinGW/Base/w32api/";
license = lib.licenses.publicDomain;
maintainers = [ lib.maintainers.RossSmyth ];
platforms = lib.intersectLists lib.platforms.windows lib.platforms.x86;
teams = [ lib.teams.windows ];
};
}