2021-01-15 14:21:58 +01:00
|
|
|
{ lib, stdenv
|
2019-10-21 21:11:29 +02:00
|
|
|
, fetchurl
|
2021-01-17 03:30:45 +01:00
|
|
|
, pkg-config
|
2019-10-21 21:11:29 +02:00
|
|
|
, removeReferencesTo
|
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, libpng
|
|
|
|
, libtiff
|
|
|
|
, pam
|
|
|
|
, dbus
|
2022-09-21 09:04:52 +02:00
|
|
|
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
|
2021-01-28 21:56:25 +01:00
|
|
|
, systemd
|
2019-10-21 21:11:29 +02:00
|
|
|
, acl
|
|
|
|
, gmp
|
|
|
|
, darwin
|
2020-04-24 23:43:07 +02:00
|
|
|
, libusb1 ? null
|
2019-10-21 21:11:29 +02:00
|
|
|
, gnutls ? null
|
|
|
|
, avahi ? null
|
|
|
|
, libpaper ? null
|
2018-08-10 05:30:45 +02:00
|
|
|
, coreutils
|
2022-01-14 18:49:39 +01:00
|
|
|
, nixosTests
|
2015-03-26 21:30:45 +01:00
|
|
|
}:
|
2012-10-08 20:50:19 +02:00
|
|
|
|
2016-08-18 11:20:26 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cups";
|
2024-06-24 15:17:02 +02:00
|
|
|
version = "2.4.10";
|
2009-11-05 14:33:36 +01:00
|
|
|
|
2022-12-02 02:37:13 +01:00
|
|
|
src = fetchurl {
|
2021-08-05 00:13:58 +02:00
|
|
|
url = "https://github.com/OpenPrinting/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
|
2024-06-24 15:17:02 +02:00
|
|
|
sha256 = "sha256-11dXwrwPeiiwLuTVLKnksaoboq/+FrmFhU9TNpQOWtc=";
|
2022-12-02 02:37:13 +01:00
|
|
|
};
|
2007-04-02 18:22:10 +02:00
|
|
|
|
2017-03-12 18:09:39 +01:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
2013-06-11 14:52:36 +02:00
|
|
|
|
2018-08-10 05:30:45 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cups/testfile.c \
|
|
|
|
--replace 'cupsFileFind("cat", "/bin' 'cupsFileFind("cat", "${coreutils}/bin'
|
2022-11-28 14:46:44 +01:00
|
|
|
|
|
|
|
# The cups.socket unit shouldn't be part of cups.service: stopping the
|
|
|
|
# service would stop the socket and break subsequent socket activations.
|
|
|
|
# See https://github.com/apple/cups/issues/6005
|
|
|
|
sed -i '/PartOf=cups.service/d' scheduler/cups.socket.in
|
2023-11-13 15:47:08 +01:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinSdkVersion "12") ''
|
2023-06-03 01:35:10 +02:00
|
|
|
substituteInPlace backend/usb-darwin.c \
|
|
|
|
--replace "kIOMainPortDefault" "kIOMasterPortDefault"
|
2018-08-10 05:30:45 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-17 03:30:45 +01:00
|
|
|
nativeBuildInputs = [ pkg-config removeReferencesTo ];
|
2017-11-30 16:23:33 +01:00
|
|
|
|
2020-04-24 23:43:07 +02:00
|
|
|
buildInputs = [ zlib libjpeg libpng libtiff libusb1 gnutls libpaper ]
|
2023-01-23 22:45:25 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [ avahi pam dbus acl ]
|
|
|
|
++ lib.optional enableSystemd systemd
|
|
|
|
++ lib.optionals stdenv.isDarwin (with darwin; [
|
2016-01-13 06:52:39 +01:00
|
|
|
configd apple_sdk.frameworks.ApplicationServices
|
|
|
|
]);
|
2009-10-30 10:46:51 +01:00
|
|
|
|
2015-07-26 12:44:26 +02:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2007-04-02 19:30:11 +02:00
|
|
|
|
2022-11-03 00:28:21 +01:00
|
|
|
configurePlatforms = lib.optionals stdenv.isLinux [ "build" "host" ];
|
2015-03-26 21:30:45 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--enable-raw-printing"
|
|
|
|
"--enable-threads"
|
2023-01-23 22:45:25 +01:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
2015-03-26 21:30:45 +01:00
|
|
|
"--enable-dbus"
|
|
|
|
"--enable-pam"
|
2019-09-16 04:27:04 +02:00
|
|
|
"--with-dbusdir=${placeholder "out"}/share/dbus-1"
|
2023-01-23 22:45:25 +01:00
|
|
|
] ++ lib.optional (libusb1 != null) "--enable-libusb"
|
|
|
|
++ lib.optional (gnutls != null) "--enable-ssl"
|
|
|
|
++ lib.optional (avahi != null) "--enable-avahi"
|
|
|
|
++ lib.optional (libpaper != null) "--enable-libpaper";
|
2017-12-04 18:52:29 +01:00
|
|
|
|
2018-11-29 04:58:17 +01:00
|
|
|
# AR has to be an absolute path
|
2017-12-04 18:52:29 +01:00
|
|
|
preConfigure = ''
|
2023-01-23 22:45:25 +01:00
|
|
|
export AR="${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
|
2017-12-04 18:52:29 +01:00
|
|
|
configureFlagsArray+=(
|
|
|
|
# Put just lib/* and locale into $lib; this didn't work directly.
|
|
|
|
# lib/cups is moved back to $out in postInstall.
|
|
|
|
# Beware: some parts of cups probably don't fully respect these.
|
|
|
|
"--prefix=$lib"
|
|
|
|
"--datadir=$out/share"
|
|
|
|
"--localedir=$lib/share/locale"
|
|
|
|
|
|
|
|
"--with-systemd=$out/lib/systemd/system"
|
|
|
|
|
2023-01-23 22:45:25 +01:00
|
|
|
${lib.optionalString stdenv.isDarwin ''
|
2017-12-04 18:52:29 +01:00
|
|
|
"--with-bundledir=$out"
|
|
|
|
''}
|
|
|
|
)
|
|
|
|
'';
|
2007-04-02 19:30:11 +02:00
|
|
|
|
2009-10-30 10:46:51 +01:00
|
|
|
installFlags =
|
|
|
|
[ # Don't try to write in /var at build time.
|
|
|
|
"CACHEDIR=$(TMPDIR)/dummy"
|
2022-12-02 02:37:13 +01:00
|
|
|
"LAUNCHD_DIR=$(TMPDIR)/dummy"
|
2009-10-30 10:46:51 +01:00
|
|
|
"LOGDIR=$(TMPDIR)/dummy"
|
|
|
|
"REQUESTS=$(TMPDIR)/dummy"
|
|
|
|
"STATEDIR=$(TMPDIR)/dummy"
|
2009-10-30 13:33:34 +01:00
|
|
|
# Idem for /etc.
|
|
|
|
"PAMDIR=$(out)/etc/pam.d"
|
2009-11-05 14:33:36 +01:00
|
|
|
"XINETD=$(out)/etc/xinetd.d"
|
2014-12-16 18:22:22 +01:00
|
|
|
"SERVERROOT=$(out)/etc/cups"
|
2009-11-05 14:33:36 +01:00
|
|
|
# Idem for /usr.
|
|
|
|
"MENUDIR=$(out)/share/applications"
|
|
|
|
"ICONDIR=$(out)/share/icons"
|
2009-10-30 10:46:51 +01:00
|
|
|
# Work around a Makefile bug.
|
|
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
|
|
];
|
2008-11-07 14:36:57 +01:00
|
|
|
|
2016-01-13 17:46:41 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-08-15 21:01:22 +02:00
|
|
|
postInstall = ''
|
2017-12-04 18:52:29 +01:00
|
|
|
libexec=${if stdenv.isDarwin then "libexec/cups" else "lib/cups"}
|
|
|
|
moveToOutput $libexec "$out"
|
|
|
|
|
|
|
|
# $lib contains references to $out/share/cups.
|
|
|
|
# CUPS is working without them, so they are not vital.
|
|
|
|
find "$lib" -type f -exec grep -q "$out" {} \; \
|
|
|
|
-printf "removing references from %p\n" \
|
|
|
|
-exec remove-references-to -t "$out" {} +
|
2017-03-12 18:09:39 +01:00
|
|
|
|
2014-12-16 18:20:12 +01:00
|
|
|
# Delete obsolete stuff that conflicts with cups-filters.
|
|
|
|
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
|
2015-04-18 11:00:58 +02:00
|
|
|
|
2017-03-12 15:52:00 +01:00
|
|
|
moveToOutput bin/cups-config "$dev"
|
2017-12-04 18:52:29 +01:00
|
|
|
sed -e "/^cups_serverbin=/s|$lib|$out|" \
|
2017-03-27 18:56:16 +02:00
|
|
|
-i "$dev/bin/cups-config"
|
2015-10-03 13:33:13 +02:00
|
|
|
|
2017-03-12 15:52:00 +01:00
|
|
|
for f in "$out"/lib/systemd/system/*; do
|
2021-08-05 00:13:58 +02:00
|
|
|
substituteInPlace "$f" --replace "$lib/$libexec" "$out/$libexec"
|
2015-04-28 20:37:34 +02:00
|
|
|
done
|
2023-01-23 22:45:25 +01:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2015-08-15 21:01:22 +02:00
|
|
|
# Use xdg-open when on Linux
|
2017-03-12 15:52:00 +01:00
|
|
|
substituteInPlace "$out"/share/applications/cups.desktop \
|
2015-08-15 21:01:22 +02:00
|
|
|
--replace "Exec=htmlview" "Exec=xdg-open"
|
2013-06-11 14:52:36 +02:00
|
|
|
'';
|
|
|
|
|
2023-06-01 13:13:30 +02:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests)
|
|
|
|
printing-service
|
|
|
|
printing-socket
|
|
|
|
;
|
|
|
|
};
|
2022-01-14 18:49:39 +01:00
|
|
|
|
2023-01-23 22:45:25 +01:00
|
|
|
meta = with lib; {
|
2021-08-05 00:13:58 +02:00
|
|
|
homepage = "https://openprinting.github.io/cups/";
|
2008-11-07 14:36:57 +01:00
|
|
|
description = "Standards-based printing system for UNIX";
|
2021-08-05 00:13:58 +02:00
|
|
|
license = licenses.asl20;
|
2019-08-14 17:44:30 +02:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
2017-04-07 02:13:23 +02:00
|
|
|
platforms = platforms.unix;
|
2008-11-07 14:36:57 +01:00
|
|
|
};
|
2005-10-21 15:06:08 +02:00
|
|
|
}
|