2021-01-15 16:21:58 +03:00
|
|
|
{ lib, stdenv
|
2019-10-21 22:11:29 +03:00
|
|
|
, fetchurl
|
2021-01-17 05:30:45 +03:00
|
|
|
, pkg-config
|
2019-10-21 22:11:29 +03:00
|
|
|
, removeReferencesTo
|
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, libpng
|
|
|
|
, libtiff
|
|
|
|
, pam
|
|
|
|
, dbus
|
|
|
|
, enableSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isMusl
|
2021-01-28 23:56:25 +03:00
|
|
|
, systemd
|
2019-10-21 22:11:29 +03:00
|
|
|
, acl
|
|
|
|
, gmp
|
|
|
|
, darwin
|
2020-04-25 00:43:07 +03:00
|
|
|
, libusb1 ? null
|
2019-10-21 22:11:29 +03:00
|
|
|
, gnutls ? null
|
|
|
|
, avahi ? null
|
|
|
|
, libpaper ? null
|
2018-08-10 06:30:45 +03:00
|
|
|
, coreutils
|
2015-03-26 23:30:45 +03:00
|
|
|
}:
|
2012-10-08 22:50:19 +04:00
|
|
|
|
2016-02-21 15:51:08 +03:00
|
|
|
### IMPORTANT: before updating cups, make sure the nixos/tests/printing.nix test
|
|
|
|
### works at least for your platform.
|
2005-10-21 17:06:08 +04:00
|
|
|
|
2021-01-15 16:21:58 +03:00
|
|
|
with lib;
|
2016-08-18 12:20:26 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "cups";
|
2019-01-08 04:37:55 +03:00
|
|
|
|
|
|
|
# After 2.2.6, CUPS requires headers only available in macOS 10.12+
|
2020-04-30 22:50:14 +03:00
|
|
|
version = if stdenv.isDarwin then "2.2.6" else "2.3.3";
|
2009-11-05 16:33:36 +03:00
|
|
|
|
2011-08-18 16:52:22 +04:00
|
|
|
passthru = { inherit version; };
|
|
|
|
|
2005-10-21 17:06:08 +04:00
|
|
|
src = fetchurl {
|
2017-03-12 17:50:26 +03:00
|
|
|
url = "https://github.com/apple/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
|
2019-01-08 04:37:55 +03:00
|
|
|
sha256 = if version == "2.2.6"
|
|
|
|
then "16qn41b84xz6khrr2pa2wdwlqxr29rrrkjfi618gbgdkq9w5ff20"
|
2020-04-30 22:50:14 +03:00
|
|
|
else "1vpk0b2vq830f8fvf9z8qjsm5k141i7pi8djbinpnr78pi4dj7r6";
|
2005-10-21 17:06:08 +04:00
|
|
|
};
|
2007-04-02 20:22:10 +04:00
|
|
|
|
2017-03-12 20:09:39 +03:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
2013-06-11 16:52:36 +04:00
|
|
|
|
2018-08-10 06:30:45 +03:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cups/testfile.c \
|
|
|
|
--replace 'cupsFileFind("cat", "/bin' 'cupsFileFind("cat", "${coreutils}/bin'
|
|
|
|
'';
|
|
|
|
|
2021-01-17 05:30:45 +03:00
|
|
|
nativeBuildInputs = [ pkg-config removeReferencesTo ];
|
2017-11-30 18:23:33 +03:00
|
|
|
|
2020-04-25 00:43:07 +03:00
|
|
|
buildInputs = [ zlib libjpeg libpng libtiff libusb1 gnutls libpaper ]
|
2019-10-21 22:11:29 +03:00
|
|
|
++ optionals stdenv.isLinux [ avahi pam dbus ]
|
|
|
|
++ optional enableSystemd systemd
|
|
|
|
# Separate from above only to not modify order, to avoid mass rebuilds; merge this with the above at next big change.
|
|
|
|
++ optionals stdenv.isLinux [ acl ]
|
2016-01-13 08:52:39 +03:00
|
|
|
++ optionals stdenv.isDarwin (with darwin; [
|
|
|
|
configd apple_sdk.frameworks.ApplicationServices
|
|
|
|
]);
|
2009-10-30 12:46:51 +03:00
|
|
|
|
2015-07-26 13:44:26 +03:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2007-04-02 21:30:11 +04:00
|
|
|
|
2015-03-26 23:30:45 +03:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--enable-raw-printing"
|
|
|
|
"--enable-threads"
|
|
|
|
] ++ optionals stdenv.isLinux [
|
|
|
|
"--enable-dbus"
|
|
|
|
"--enable-pam"
|
2019-09-16 05:27:04 +03:00
|
|
|
"--with-dbusdir=${placeholder "out"}/share/dbus-1"
|
2020-04-25 00:43:07 +03:00
|
|
|
] ++ optional (libusb1 != null) "--enable-libusb"
|
2015-03-26 23:30:45 +03:00
|
|
|
++ optional (gnutls != null) "--enable-ssl"
|
|
|
|
++ optional (avahi != null) "--enable-avahi"
|
2016-01-13 08:52:39 +03:00
|
|
|
++ optional (libpaper != null) "--enable-libpaper"
|
2017-12-04 20:52:29 +03:00
|
|
|
++ optional stdenv.isDarwin "--disable-launchd";
|
|
|
|
|
2018-11-29 06:58:17 +03:00
|
|
|
# AR has to be an absolute path
|
2017-12-04 20:52:29 +03:00
|
|
|
preConfigure = ''
|
2018-11-29 06:58:17 +03:00
|
|
|
export AR="${getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
|
2017-12-04 20:52:29 +03: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"
|
|
|
|
|
|
|
|
${optionalString stdenv.isDarwin ''
|
|
|
|
"--with-bundledir=$out"
|
|
|
|
''}
|
|
|
|
)
|
|
|
|
'';
|
2007-04-02 21:30:11 +04:00
|
|
|
|
2009-10-30 12:46:51 +03:00
|
|
|
installFlags =
|
|
|
|
[ # Don't try to write in /var at build time.
|
|
|
|
"CACHEDIR=$(TMPDIR)/dummy"
|
|
|
|
"LOGDIR=$(TMPDIR)/dummy"
|
|
|
|
"REQUESTS=$(TMPDIR)/dummy"
|
|
|
|
"STATEDIR=$(TMPDIR)/dummy"
|
2009-10-30 15:33:34 +03:00
|
|
|
# Idem for /etc.
|
|
|
|
"PAMDIR=$(out)/etc/pam.d"
|
2009-11-05 16:33:36 +03:00
|
|
|
"XINETD=$(out)/etc/xinetd.d"
|
2014-12-16 20:22:22 +03:00
|
|
|
"SERVERROOT=$(out)/etc/cups"
|
2009-11-05 16:33:36 +03:00
|
|
|
# Idem for /usr.
|
|
|
|
"MENUDIR=$(out)/share/applications"
|
|
|
|
"ICONDIR=$(out)/share/icons"
|
2009-10-30 12:46:51 +03:00
|
|
|
# Work around a Makefile bug.
|
|
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
|
|
];
|
2008-11-07 16:36:57 +03:00
|
|
|
|
2016-01-13 19:46:41 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-08-15 22:01:22 +03:00
|
|
|
postInstall = ''
|
2017-12-04 20:52:29 +03: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 20:09:39 +03:00
|
|
|
|
2014-12-16 20:20:12 +03:00
|
|
|
# Delete obsolete stuff that conflicts with cups-filters.
|
|
|
|
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
|
2015-04-18 12:00:58 +03:00
|
|
|
|
2017-03-12 17:52:00 +03:00
|
|
|
moveToOutput bin/cups-config "$dev"
|
2017-12-04 20:52:29 +03:00
|
|
|
sed -e "/^cups_serverbin=/s|$lib|$out|" \
|
2017-03-27 19:56:16 +03:00
|
|
|
-i "$dev/bin/cups-config"
|
2015-10-03 14:33:13 +03:00
|
|
|
|
2015-04-28 21:37:34 +03:00
|
|
|
# Rename systemd files provided by CUPS
|
2017-03-12 17:52:00 +03:00
|
|
|
for f in "$out"/lib/systemd/system/*; do
|
2015-04-28 21:37:34 +03:00
|
|
|
substituteInPlace "$f" \
|
2017-12-04 20:52:29 +03:00
|
|
|
--replace "$lib/$libexec" "$out/$libexec" \
|
2015-04-28 21:37:34 +03:00
|
|
|
--replace "org.cups.cupsd" "cups" \
|
|
|
|
--replace "org.cups." ""
|
|
|
|
|
|
|
|
if [[ "$f" =~ .*cupsd\..* ]]; then
|
|
|
|
mv "$f" "''${f/org\.cups\.cupsd/cups}"
|
|
|
|
else
|
|
|
|
mv "$f" "''${f/org\.cups\./}"
|
|
|
|
fi
|
|
|
|
done
|
2015-08-15 22:01:22 +03:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
|
|
|
# Use xdg-open when on Linux
|
2017-03-12 17:52:00 +03:00
|
|
|
substituteInPlace "$out"/share/applications/cups.desktop \
|
2015-08-15 22:01:22 +03:00
|
|
|
--replace "Exec=htmlview" "Exec=xdg-open"
|
2013-06-11 16:52:36 +04:00
|
|
|
'';
|
|
|
|
|
2008-11-07 16:36:57 +03:00
|
|
|
meta = {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://cups.org/";
|
2008-11-07 16:36:57 +03:00
|
|
|
description = "A standards-based printing system for UNIX";
|
2015-04-28 13:11:41 +03:00
|
|
|
license = licenses.gpl2; # actually LGPL for the library and GPL for the rest
|
2019-08-14 18:44:30 +03:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
2017-04-07 03:13:23 +03:00
|
|
|
platforms = platforms.unix;
|
2008-11-07 16:36:57 +03:00
|
|
|
};
|
2005-10-21 17:06:08 +04:00
|
|
|
}
|