diff --git a/pkgs/development/libraries/pixman/default.nix b/pkgs/development/libraries/pixman/default.nix index ffdaeaef035..0407f208574 100644 --- a/pkgs/development/libraries/pixman/default.nix +++ b/pkgs/development/libraries/pixman/default.nix @@ -1,4 +1,18 @@ -{ lib, stdenv, fetchurl, pkg-config, libpng, glib /*just passthru*/ }: +{ lib +, stdenv +, fetchurl +, pkg-config +, libpng +, glib /*just passthru*/ + +# for passthru.tests +, cairo +, qemu +, scribus +, tigervnc +, wlroots +, xwayland +}: stdenv.mkDerivation rec { pname = "pixman"; @@ -26,6 +40,10 @@ stdenv.mkDerivation rec { postInstall = glib.flattenInclude; + passthru.tests = { + inherit cairo qemu scribus tigervnc wlroots xwayland; + }; + meta = with lib; { homepage = "http://pixman.org"; description = "A low-level library for pixel manipulation";