summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2023-01-13 10:29:10 +0100
committerGitHub <noreply@github.com>2023-01-13 10:29:10 +0100
commit67370960f7c691930db451bfca0b4ab8a5c051c6 (patch)
tree00f5b10fa650316d784737c54d2a18d56a903125
parent137573f1cdb4d4ceaae267970a414891a2b914fa (diff)
parent735ab17d436b8ba68b2967969aa3d0e790bcacca (diff)
Merge pull request #210482 from alyssais/zimg-platforms
zimg: broaden platforms
-rw-r--r--pkgs/development/libraries/zimg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/zimg/default.nix b/pkgs/development/libraries/zimg/default.nix
index 475ebc7517e5..f7b0ab31d83c 100644
--- a/pkgs/development/libraries/zimg/default.nix
+++ b/pkgs/development/libraries/zimg/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
description = "Scaling, colorspace conversion and dithering library";
homepage = "https://github.com/sekrit-twc/zimg";
license = licenses.wtfpl;
- platforms = platforms.linux ++ platforms.darwin;
+ platforms = with platforms; unix ++ windows;
maintainers = with maintainers; [ rnhmjoj ];
};
}