nixpkgs/pkgs/misc/cups/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

154 lines
4.6 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv
, fetchurl
2021-01-17 02:30:45 +00:00
, pkg-config
, removeReferencesTo
, zlib
, libjpeg
, libpng
, libtiff
, pam
, dbus
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
, systemd
, acl
, gmp
, darwin
2020-04-24 21:43:07 +00:00
, libusb1 ? null
, gnutls ? null
, avahi ? null
, libpaper ? null
2018-08-10 03:30:45 +00:00
, coreutils
2022-01-14 17:49:39 +00:00
, nixosTests
2015-03-26 20:30:45 +00:00
}:
2012-10-08 18:50:19 +00:00
2016-08-18 09:20:26 +00:00
stdenv.mkDerivation rec {
pname = "cups";
2023-07-01 03:00:17 +00:00
version = "2.4.6";
2022-12-02 01:37:13 +00:00
src = fetchurl {
url = "https://github.com/OpenPrinting/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
2023-07-01 03:00:17 +00:00
sha256 = "sha256-WOlwzxlV4cyH0IR8MlJtnCzO4zXl8OOIKygxOLoOcmI=";
2022-12-02 01:37:13 +00:00
};
outputs = [ "out" "lib" "dev" "man" ];
2018-08-10 03:30:45 +00:00
postPatch = ''
substituteInPlace cups/testfile.c \
--replace 'cupsFileFind("cat", "/bin' 'cupsFileFind("cat", "${coreutils}/bin'
# 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-06-02 23:35:10 +00:00
'' + lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.targetPlatform.darwinSdkVersion "12") ''
substituteInPlace backend/usb-darwin.c \
--replace "kIOMainPortDefault" "kIOMasterPortDefault"
2018-08-10 03:30:45 +00:00
'';
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ pkg-config removeReferencesTo ];
2017-11-30 15:23:33 +00:00
2020-04-24 21:43:07 +00:00
buildInputs = [ zlib libjpeg libpng libtiff libusb1 gnutls libpaper ]
2023-01-23 21:45:25 +00:00
++ lib.optionals stdenv.isLinux [ avahi pam dbus acl ]
++ lib.optional enableSystemd systemd
++ lib.optionals stdenv.isDarwin (with darwin; [
2016-01-13 05:52:39 +00:00
configd apple_sdk.frameworks.ApplicationServices
]);
propagatedBuildInputs = [ gmp ];
2022-11-02 23:28:21 +00:00
configurePlatforms = lib.optionals stdenv.isLinux [ "build" "host" ];
2015-03-26 20:30:45 +00:00
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
"--enable-raw-printing"
"--enable-threads"
2023-01-23 21:45:25 +00:00
] ++ lib.optionals stdenv.isLinux [
2015-03-26 20:30:45 +00:00
"--enable-dbus"
"--enable-pam"
"--with-dbusdir=${placeholder "out"}/share/dbus-1"
2023-01-23 21:45:25 +00: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 17:52:29 +00:00
2018-11-29 03:58:17 +00:00
# AR has to be an absolute path
2017-12-04 17:52:29 +00:00
preConfigure = ''
2023-01-23 21:45:25 +00:00
export AR="${lib.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"
2023-01-23 21:45:25 +00:00
${lib.optionalString stdenv.isDarwin ''
2017-12-04 17:52:29 +00:00
"--with-bundledir=$out"
''}
)
'';
installFlags =
[ # Don't try to write in /var at build time.
"CACHEDIR=$(TMPDIR)/dummy"
2022-12-02 01:37:13 +00:00
"LAUNCHD_DIR=$(TMPDIR)/dummy"
"LOGDIR=$(TMPDIR)/dummy"
"REQUESTS=$(TMPDIR)/dummy"
"STATEDIR=$(TMPDIR)/dummy"
# Idem for /etc.
"PAMDIR=$(out)/etc/pam.d"
"XINETD=$(out)/etc/xinetd.d"
"SERVERROOT=$(out)/etc/cups"
# Idem for /usr.
"MENUDIR=$(out)/share/applications"
"ICONDIR=$(out)/share/icons"
# Work around a Makefile bug.
"CUPS_PRIMARY_SYSTEM_GROUP=root"
];
enableParallelBuilding = true;
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" {} +
# Delete obsolete stuff that conflicts with cups-filters.
rm -rf $out/share/cups/banners $out/share/cups/data/testprint
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|" \
-i "$dev/bin/cups-config"
2017-03-12 14:52:00 +00:00
for f in "$out"/lib/systemd/system/*; do
substituteInPlace "$f" --replace "$lib/$libexec" "$out/$libexec"
done
2023-01-23 21:45:25 +00:00
'' + lib.optionalString stdenv.isLinux ''
# Use xdg-open when on Linux
2017-03-12 14:52:00 +00:00
substituteInPlace "$out"/share/applications/cups.desktop \
--replace "Exec=htmlview" "Exec=xdg-open"
'';
passthru.tests = {
inherit (nixosTests)
printing-service
printing-socket
;
};
2022-01-14 17:49:39 +00:00
2023-01-23 21:45:25 +00:00
meta = with lib; {
homepage = "https://openprinting.github.io/cups/";
description = "A standards-based printing system for UNIX";
license = licenses.asl20;
2019-08-14 15:44:30 +00:00
maintainers = with maintainers; [ matthewbauer ];
platforms = platforms.unix;
};
}