From 29ab6bb3b95293351aa8d7c8e20d497bebbd6c48 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Mon, 30 Jan 2023 20:11:49 +0100 Subject: [PATCH] libde265: drop imagemagick6 from passthru.tests `imagemagick6` has been marked insecure in 84747dae9a7244d06ddf9374238771f53e57b3cf. It is not really necessary to keep it in the `passthru.tests` of libde265 and we do not want to break those tests for someone building them without ALLOW_INSECURE. --- pkgs/development/libraries/libde265/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libde265/default.nix b/pkgs/development/libraries/libde265/default.nix index d054e223cf0d..18b8d6ba5d6f 100644 --- a/pkgs/development/libraries/libde265/default.nix +++ b/pkgs/development/libraries/libde265/default.nix @@ -6,7 +6,6 @@ # for passthru.tests , imagemagick -, imagemagick6 , libheif , imlib2Full , gst_all_1 @@ -28,7 +27,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; passthru.tests = { - inherit imagemagick imagemagick6 libheif imlib2Full; + inherit imagemagick libheif imlib2Full; inherit (gst_all_1) gst-plugins-bad; };