From 4bc8d425f2c8b1d537293e10e2e8bd9713d9d616 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 3 Apr 2022 19:56:00 +0100 Subject: [PATCH] imlib2: add some key reverse-dependencies to passthru.tests --- pkgs/development/libraries/imlib2/default.nix | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/development/libraries/imlib2/default.nix b/pkgs/development/libraries/imlib2/default.nix index 26f904b49b0..2790eaf460b 100644 --- a/pkgs/development/libraries/imlib2/default.nix +++ b/pkgs/development/libraries/imlib2/default.nix @@ -9,6 +9,15 @@ # https://github.com/NixOS/nixpkgs/pull/166452#issuecomment-1090725613 , svgSupport ? !stdenv.isDarwin , heifSupport ? !stdenv.isDarwin + +# for passthru.tests +, libcaca +, diffoscopeMinimal +, feh +, icewm +, openbox +, fluxbox +, enlightenment }: let @@ -43,6 +52,17 @@ stdenv.mkDerivation rec { outputs = [ "bin" "out" "dev" ]; + passthru.tests = { + inherit + libcaca + diffoscopeMinimal + feh + icewm + openbox + fluxbox + enlightenment; + }; + meta = with lib; { description = "Image manipulation library";