1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

colord: add test to passthru

This commit is contained in:
worldofpeace 2019-11-07 08:39:26 -05:00
parent 40910462a8
commit 247422c187

View file

@ -1,5 +1,6 @@
{ stdenv
, fetchurl
, nixosTests
, bash-completion
, glib
, polkit
@ -97,6 +98,12 @@ stdenv.mkDerivation rec {
PKG_CONFIG_BASH_COMPLETION_COMPLETIONSDIR= "${placeholder "out"}/share/bash-completion/completions";
PKG_CONFIG_UDEV_UDEVDIR = "${placeholder "out"}/lib/udev";
passthru = {
tests = {
installedTests = nixosTests.installed-tests.colord;
};
};
meta = with stdenv.lib; {
description = "System service to manage, install and generate color profiles to accurately color manage input and output devices";
homepage = https://www.freedesktop.org/software/colord/;