about summary refs log tree commit diff
path: root/pkgs/tools/graphics/gifski
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-05-28 15:22:26 +0200
committerRick van Schijndel <rol3517@gmail.com>2022-05-29 10:56:04 +0200
commitcd3c25616d603598d32430e30ae676f93959f6bd (patch)
treede83956780100b1e6ded58fe6490e520cf40158c /pkgs/tools/graphics/gifski
parent6d9a33741eecbf01e5ddaa080abb53108bcbb8f6 (diff)
treewide: pkgs/tools: mark broken for darwin
All packages that were failing on x86_64-darwin are marked broken.
I'm assuming here that these are also broken on aarch64-darwin.
Diffstat (limited to 'pkgs/tools/graphics/gifski')
-rw-r--r--pkgs/tools/graphics/gifski/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/graphics/gifski/default.nix b/pkgs/tools/graphics/gifski/default.nix
index 7571db85400fe..bf3cbf420b142 100644
--- a/pkgs/tools/graphics/gifski/default.nix
+++ b/pkgs/tools/graphics/gifski/default.nix
@@ -1,4 +1,4 @@
-{ lib, rustPlatform, fetchFromGitHub, pkg-config }:
+{ stdenv, lib, rustPlatform, fetchFromGitHub, pkg-config }:
 
 rustPlatform.buildRustPackage rec {
   pname = "gifski";
@@ -16,6 +16,7 @@ rustPlatform.buildRustPackage rec {
   nativeBuildInputs = [ pkg-config ];
 
   meta = with lib; {
+    broken = stdenv.isDarwin;
     description = "GIF encoder based on libimagequant (pngquant)";
     homepage = "https://gif.ski/";
     license = licenses.agpl3;