mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
cups: keep versioning in all-packages.nix, as it is in master
This commit is contained in:
parent
32d823d3d0
commit
6ced9298c7
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
|
||||
, dbus, libusb1, acl }:
|
||||
, dbus, libusb, acl }:
|
||||
|
||||
let version = "1.5.4"; in
|
||||
|
||||
@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
# FIXME: Split off the cups client library.
|
||||
outputs = [ "dev" "out" "doc" "man" ];
|
||||
|
||||
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb1 ]
|
||||
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ pam dbus.libs acl ] ;
|
||||
|
||||
propagatedBuildInputs = [ openssl ];
|
||||
|
@ -9630,6 +9630,7 @@ let
|
||||
|
||||
cups = callPackage ../misc/cups {
|
||||
stdenv = stdenvMulti;
|
||||
libusb = libusb1;
|
||||
};
|
||||
|
||||
cups_pdf_filter = callPackage ../misc/cups/pdf-filter.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user