From 3b823d4364cecbdf127be4c0ccbe48a5627de67b Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 25 Apr 2024 10:08:34 +0200 Subject: [PATCH] openexr_3.tests.musl: init This would have caught the regression fixed by ccf9793a0045 ("pkgsMusl.openexr_3: fix build"). --- pkgs/development/libraries/openexr/3.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/openexr/3.nix b/pkgs/development/libraries/openexr/3.nix index e5fe5bd40a1b..074fdf4222d3 100644 --- a/pkgs/development/libraries/openexr/3.nix +++ b/pkgs/development/libraries/openexr/3.nix @@ -5,6 +5,7 @@ , imath , libdeflate , pkg-config +, pkgsCross }: stdenv.mkDerivation rec { @@ -45,6 +46,10 @@ stdenv.mkDerivation rec { # https://github.com/AcademySoftwareFoundation/openexr/issues/1400 doCheck = !stdenv.isAarch32; + passthru.tests = { + musl = pkgsCross.musl64.openexr_3; + }; + meta = with lib; { description = "A high dynamic-range (HDR) image file format"; homepage = "https://www.openexr.com";