From 44dddc3f18032917bbacb93dcce178f3f819a682 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Mon, 7 Aug 2023 02:06:37 -0700 Subject: [PATCH] gifski: fix tests by running them in debug mode --- pkgs/tools/graphics/gifski/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/gifski/default.nix b/pkgs/tools/graphics/gifski/default.nix index 60a77af920ea..437bb414ef3d 100644 --- a/pkgs/tools/graphics/gifski/default.nix +++ b/pkgs/tools/graphics/gifski/default.nix @@ -14,7 +14,7 @@ rustPlatform.buildRustPackage rec { owner = "ImageOptim"; repo = "gifski"; rev = version; - sha256 = "sha256-sPsq/hntNqOdPJcoob1jrDUrLLiBEnfRoDANyFUjOuM="; + hash = "sha256-sPsq/hntNqOdPJcoob1jrDUrLLiBEnfRoDANyFUjOuM="; }; cargoLock = { @@ -35,8 +35,15 @@ rustPlatform.buildRustPackage rec { buildFeatures = [ "video" ]; - # error: the crate `gifski` is compiled with the panic strategy `abort` which is incompatible with this crate's strategy of `unwind` - doCheck = !stdenv.isDarwin; + # When the default checkType of release is used, we get the following error: + # + # error: the crate `gifski` is compiled with the panic strategy `abort` which + # is incompatible with this crate's strategy of `unwind` + # + # It looks like https://github.com/rust-lang/cargo/issues/6313, which does not + # outline a solution. + # + checkType = "debug"; # error: linker `/usr/bin/x86_64-linux-gnu-gcc` not found postPatch = '' @@ -49,5 +56,6 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/ImageOptim/gifski/releases/tag/${src.rev}"; license = licenses.agpl3Plus; maintainers = with maintainers; [ figsoda marsam ]; + mainProgram = "gifski"; }; }