about summary refs log tree commit diff
path: root/pkgs/tools/misc/colord
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-09-17 17:44:59 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-09-17 17:44:59 +0200
commite70593389fb3593408be57a4956190cfbe84f63e (patch)
tree4ed4ef2a7cafda5084f0140a3318ece4dd9d0c32 /pkgs/tools/misc/colord
parentcc4e33e17cba0fbdf0d2a75a3703cc2fa902159d (diff)
Another libgudev dependency
Diffstat (limited to 'pkgs/tools/misc/colord')
-rw-r--r--pkgs/tools/misc/colord/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/colord/default.nix b/pkgs/tools/misc/colord/default.nix
index 267ed4db67cad..40c9ddf8c946c 100644
--- a/pkgs/tools/misc/colord/default.nix
+++ b/pkgs/tools/misc/colord/default.nix
@@ -1,6 +1,7 @@
 { stdenv, fetchzip, fetchgit, bashCompletion
 , glib, polkit, pkgconfig, intltool, gusb, libusb1, lcms2, sqlite, systemd, dbus
-, automake, autoconf, libtool, gtk_doc, which, gobjectIntrospection, argyllcms }:
+, automake, autoconf, libtool, gtk_doc, which, gobjectIntrospection, argyllcms
+, libgudev }:
 
 stdenv.mkDerivation rec {
   name = "colord-1.2.12";
@@ -19,7 +20,7 @@ stdenv.mkDerivation rec {
   ];
 
   buildInputs = [ glib polkit pkgconfig intltool gusb libusb1 lcms2 sqlite systemd dbus gobjectIntrospection
-                  bashCompletion argyllcms automake autoconf ];
+                  bashCompletion argyllcms automake autoconf libgudev ];
 
   postInstall = ''
     rm -fr $out/var/lib/colord
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-    description = "system service that makes it easy to manage, install and generate color profiles to accurately color manage input and output devices";
+    description = "System service to manage, install and generate color profiles to accurately color manage input and output devices";
     homepage = http://www.freedesktop.org/software/colord/intro.html;
     license = stdenv.lib.licenses.lgpl2Plus;
     maintainers = [stdenv.lib.maintainers.marcweber];