cups: Refactor meta attributes

This commit is contained in:
Jascha Geerds 2015-04-28 12:11:41 +02:00 committed by Domen Kožar
parent d6edaea4f7
commit 0a090d80ac

View File

@ -17,7 +17,7 @@ stdenv.mkDerivation {
}; };
buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls avahi libpaper ] buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb gnutls avahi libpaper ]
++ stdenv.lib.optionals stdenv.isLinux [ pam dbus.libs acl ] ; ++ optionals stdenv.isLinux [ pam dbus.libs acl ] ;
propagatedBuildInputs = [ openssl gmp ]; propagatedBuildInputs = [ openssl gmp ];
@ -61,10 +61,10 @@ stdenv.mkDerivation {
''; '';
meta = { meta = {
homepage = "http://www.cups.org/"; homepage = https://cups.org/;
description = "A standards-based printing system for UNIX"; description = "A standards-based printing system for UNIX";
license = stdenv.lib.licenses.gpl2; # actually LGPL for the library and GPL for the rest license = licenses.gpl2; # actually LGPL for the library and GPL for the rest
maintainers = [ stdenv.lib.maintainers.urkud stdenv.lib.maintainers.simons ]; maintainers = with maintainers; [ urkud simons jgeerds ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }