Merge pull request #200254 from risicle/ris-pixman-passthru-tests

This commit is contained in:
Martin Weinelt 2022-11-08 22:14:54 +01:00 committed by GitHub
commit 2063785fad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";