3
0
Fork 0
forked from mirrors/nixpkgs

Adding libusb to cups, so it can access usb printers.

svn path=/nixpkgs/trunk/; revision=22163
This commit is contained in:
Lluís Batlle i Rossell 2010-06-07 08:24:06 +00:00
parent 82c1349503
commit 20d949a6f5
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl, dbus }:
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
, dbus, libusb }:
let version = "1.4.1"; in
@ -17,7 +18,7 @@ stdenv.mkDerivation {
})
];
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff pam dbus ];
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff pam dbus libusb ];
propagatedBuildInputs = [ openssl ];

View file

@ -9551,7 +9551,7 @@ let
};
cups = import ../misc/cups {
inherit fetchurl stdenv pkgconfig zlib libjpeg libpng libtiff pam openssl dbus;
inherit fetchurl stdenv pkgconfig zlib libjpeg libpng libtiff pam openssl dbus libusb;
};
gutenprint = import ../misc/drivers/gutenprint {