2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv
|
2019-10-21 20:11:29 +01:00
|
|
|
, fetchurl
|
2022-05-27 11:03:37 +01:00
|
|
|
, fetchpatch
|
2021-01-17 02:30:45 +00:00
|
|
|
, pkg-config
|
2019-10-21 20:11:29 +01:00
|
|
|
, removeReferencesTo
|
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, libpng
|
|
|
|
, libtiff
|
|
|
|
, pam
|
|
|
|
, dbus
|
2021-11-04 08:45:07 +00:00
|
|
|
, enableSystemd ? stdenv.isLinux
|
2021-01-28 20:56:25 +00:00
|
|
|
, systemd
|
2019-10-21 20:11:29 +01:00
|
|
|
, acl
|
|
|
|
, gmp
|
|
|
|
, darwin
|
2020-04-24 22:43:07 +01:00
|
|
|
, libusb1 ? null
|
2019-10-21 20:11:29 +01:00
|
|
|
, gnutls ? null
|
|
|
|
, avahi ? null
|
|
|
|
, libpaper ? null
|
2018-08-10 04:30:45 +01:00
|
|
|
, coreutils
|
2022-01-14 17:49:39 +00:00
|
|
|
, nixosTests
|
2015-03-26 20:30:45 +00:00
|
|
|
}:
|
2012-10-08 19:50:19 +01:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2016-08-18 10:20:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cups";
|
2019-01-08 01:37:55 +00:00
|
|
|
|
|
|
|
# After 2.2.6, CUPS requires headers only available in macOS 10.12+
|
2022-05-27 11:03:37 +01:00
|
|
|
version = if stdenv.isDarwin then "2.2.6" else "2.4.2";
|
2009-11-05 13:33:36 +00:00
|
|
|
|
2021-08-04 23:13:58 +01:00
|
|
|
src = fetchurl (if stdenv.isDarwin then {
|
2017-03-12 14:50:26 +00:00
|
|
|
url = "https://github.com/apple/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
|
2021-08-04 23:13:58 +01:00
|
|
|
sha256 = "16qn41b84xz6khrr2pa2wdwlqxr29rrrkjfi618gbgdkq9w5ff20";
|
|
|
|
} else {
|
|
|
|
url = "https://github.com/OpenPrinting/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
|
2022-05-27 11:03:37 +01:00
|
|
|
sha256 = "sha256-8DzLQLCH0eMJQKQOAUHcu6Jj85l0wg658lIQZsnGyQg=";
|
2021-08-04 23:13:58 +01:00
|
|
|
});
|
2007-04-02 17:22:10 +01:00
|
|
|
|
2017-03-12 17:09:39 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
2013-06-11 13:52:36 +01:00
|
|
|
|
2022-05-27 11:03:37 +01:00
|
|
|
patches = lib.optionals (version == "2.2.6") [
|
|
|
|
./0001-TargetConditionals.patch
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2022-26691.patch";
|
|
|
|
url = "https://github.com/OpenPrinting/cups/commit/de4f8c196106033e4c372dce3e91b9d42b0b9444.patch";
|
|
|
|
sha256 = "sha256-IKOtV7bCS6PstwK6YqnYRYTeH562jWwkley86p+6Of8=";
|
|
|
|
excludes = [ "CHANGES.md" ];
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2022-26691-fix-comment.patch";
|
|
|
|
url = "https://github.com/OpenPrinting/cups/commit/411b6136f450a583ee08c3880fa09dbe837eb3f1.patch";
|
|
|
|
sha256 = "sha256-dVopmr34c9N5H2ZZz52rXVnHQBuDTNo8M40x9455+jQ=";
|
|
|
|
})
|
|
|
|
];
|
2021-06-27 11:50:44 +01:00
|
|
|
|
2018-08-10 04:30:45 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cups/testfile.c \
|
|
|
|
--replace 'cupsFileFind("cat", "/bin' 'cupsFileFind("cat", "${coreutils}/bin'
|
|
|
|
'';
|
|
|
|
|
2021-01-17 02:30:45 +00:00
|
|
|
nativeBuildInputs = [ pkg-config removeReferencesTo ];
|
2017-11-30 15:23:33 +00:00
|
|
|
|
2020-04-24 22:43:07 +01:00
|
|
|
buildInputs = [ zlib libjpeg libpng libtiff libusb1 gnutls libpaper ]
|
2021-08-04 23:13:58 +01:00
|
|
|
++ optionals stdenv.isLinux [ avahi pam dbus acl ]
|
2019-10-21 20:11:29 +01:00
|
|
|
++ optional enableSystemd systemd
|
2016-01-13 05:52:39 +00:00
|
|
|
++ optionals stdenv.isDarwin (with darwin; [
|
|
|
|
configd apple_sdk.frameworks.ApplicationServices
|
|
|
|
]);
|
2009-10-30 09:46:51 +00:00
|
|
|
|
2015-07-26 11:44:26 +01:00
|
|
|
propagatedBuildInputs = [ gmp ];
|
2007-04-02 18:30:11 +01:00
|
|
|
|
2015-03-26 20:30:45 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--enable-raw-printing"
|
|
|
|
"--enable-threads"
|
|
|
|
] ++ optionals stdenv.isLinux [
|
|
|
|
"--enable-dbus"
|
|
|
|
"--enable-pam"
|
2019-09-16 03:27:04 +01:00
|
|
|
"--with-dbusdir=${placeholder "out"}/share/dbus-1"
|
2020-04-24 22:43:07 +01:00
|
|
|
] ++ optional (libusb1 != null) "--enable-libusb"
|
2015-03-26 20:30:45 +00:00
|
|
|
++ optional (gnutls != null) "--enable-ssl"
|
|
|
|
++ optional (avahi != null) "--enable-avahi"
|
2016-01-13 05:52:39 +00:00
|
|
|
++ optional (libpaper != null) "--enable-libpaper"
|
2017-12-04 17:52:29 +00:00
|
|
|
++ optional stdenv.isDarwin "--disable-launchd";
|
|
|
|
|
2018-11-29 03:58:17 +00:00
|
|
|
# AR has to be an absolute path
|
2017-12-04 17:52:29 +00:00
|
|
|
preConfigure = ''
|
2018-11-29 03:58:17 +00:00
|
|
|
export AR="${getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
|
2017-12-04 17:52:29 +00: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 18:30:11 +01:00
|
|
|
|
2009-10-30 09:46:51 +00: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 12:33:34 +00:00
|
|
|
# Idem for /etc.
|
|
|
|
"PAMDIR=$(out)/etc/pam.d"
|
2009-11-05 13:33:36 +00:00
|
|
|
"XINETD=$(out)/etc/xinetd.d"
|
2014-12-16 17:22:22 +00:00
|
|
|
"SERVERROOT=$(out)/etc/cups"
|
2009-11-05 13:33:36 +00:00
|
|
|
# Idem for /usr.
|
|
|
|
"MENUDIR=$(out)/share/applications"
|
|
|
|
"ICONDIR=$(out)/share/icons"
|
2009-10-30 09:46:51 +00:00
|
|
|
# Work around a Makefile bug.
|
|
|
|
"CUPS_PRIMARY_SYSTEM_GROUP=root"
|
|
|
|
];
|
2008-11-07 13:36:57 +00:00
|
|
|
|
2016-01-13 16:46:41 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-08-15 20:01:22 +01:00
|
|
|
postInstall = ''
|
2017-12-04 17:52:29 +00: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 17:09:39 +00:00
|
|
|
|
2014-12-16 17:20:12 +00:00
|
|
|
# Delete obsolete stuff that conflicts with cups-filters.
|
|
|
|
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
|
2015-04-18 10:00:58 +01:00
|
|
|
|
2017-03-12 14:52:00 +00:00
|
|
|
moveToOutput bin/cups-config "$dev"
|
2017-12-04 17:52:29 +00:00
|
|
|
sed -e "/^cups_serverbin=/s|$lib|$out|" \
|
2017-03-27 17:56:16 +01:00
|
|
|
-i "$dev/bin/cups-config"
|
2015-10-03 12:33:13 +01:00
|
|
|
|
2017-03-12 14:52:00 +00:00
|
|
|
for f in "$out"/lib/systemd/system/*; do
|
2021-08-04 23:13:58 +01:00
|
|
|
substituteInPlace "$f" --replace "$lib/$libexec" "$out/$libexec"
|
2015-04-28 19:37:34 +01:00
|
|
|
done
|
2015-08-15 20:01:22 +01:00
|
|
|
'' + optionalString stdenv.isLinux ''
|
|
|
|
# Use xdg-open when on Linux
|
2017-03-12 14:52:00 +00:00
|
|
|
substituteInPlace "$out"/share/applications/cups.desktop \
|
2015-08-15 20:01:22 +01:00
|
|
|
--replace "Exec=htmlview" "Exec=xdg-open"
|
2013-06-11 13:52:36 +01:00
|
|
|
'';
|
|
|
|
|
2022-01-14 17:49:39 +00:00
|
|
|
passthru.tests.nixos = nixosTests.printing;
|
|
|
|
|
2008-11-07 13:36:57 +00:00
|
|
|
meta = {
|
2021-08-04 23:13:58 +01:00
|
|
|
homepage = "https://openprinting.github.io/cups/";
|
2008-11-07 13:36:57 +00:00
|
|
|
description = "A standards-based printing system for UNIX";
|
2021-08-04 23:13:58 +01:00
|
|
|
license = licenses.asl20;
|
2019-08-14 16:44:30 +01:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
2017-04-07 01:13:23 +01:00
|
|
|
platforms = platforms.unix;
|
2008-11-07 13:36:57 +00:00
|
|
|
};
|
2005-10-21 14:06:08 +01:00
|
|
|
}
|