Skip to content

Commit

Permalink
Merge pull request #280581 from NixOS/backport-280363-to-release-23.11
Browse files Browse the repository at this point in the history
[Backport release-23.11] graphite2, glib, harfbuzz: add mingw support
  • Loading branch information
wegank authored Jan 12, 2024
2 parents 77a4aff + 539b2e2 commit cce1cd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/glib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ stdenv.mkDerivation (finalAttrs: {
"gobject-2.0"
"gthread-2.0"
];
platforms = platforms.unix;
platforms = platforms.unix ++ platforms.windows;

longDescription = ''
GLib provides the core application building blocks for libraries
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/harfbuzz/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ stdenv.mkDerivation (finalAttrs: {
changelog = "https://github.com/harfbuzz/harfbuzz/raw/${version}/NEWS";
maintainers = [ maintainers.eelco ];
license = licenses.mit;
platforms = platforms.unix;
platforms = platforms.unix ++ platforms.windows;
pkgConfigModules = [
"harfbuzz"
"harfbuzz-gobject"
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/silgraphite/graphite2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21;
maintainers = [ maintainers.raskin ];
mainProgram = "gr2fonttest";
platforms = platforms.unix;
platforms = platforms.unix ++ platforms.windows;
};
}

0 comments on commit cce1cd2

Please sign in to comment.