summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-01-12 17:40:39 +0000
committerAlyssa Ross <hi@alyssa.is>2023-01-13 04:11:27 +0000
commit735ab17d436b8ba68b2967969aa3d0e790bcacca (patch)
treef83519460b3d363321fbb89d8a08d4a358678b99
parent549412b072c765b986b4cc721a8ebf232027b2ec (diff)
zimg: broaden platforms
From the README: > Platforms: Microsoft Windows, POSIX Tested building for FreeBSD.
-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 ];
};
}