From bf1c73d3b17a607ce3ab51db89a4e77fcd86f8f1 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 8 Sep 2025 19:02:18 +0200 Subject: [PATCH] sane-backends: replace `systemd` with `systemdLibs` --- pkgs/applications/graphics/sane/backends/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/sane/backends/default.nix b/pkgs/applications/graphics/sane/backends/default.nix index 0288e4c28650..a473613ad5e7 100644 --- a/pkgs/applications/graphics/sane/backends/default.nix +++ b/pkgs/applications/graphics/sane/backends/default.nix @@ -17,8 +17,8 @@ libv4l, net-snmp, curl, - systemd, - withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, + systemdLibs, + withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemdLibs, libxml2, poppler, gawk, @@ -118,7 +118,7 @@ stdenv.mkDerivation (finalAttrs: { net-snmp ] ++ lib.optionals withSystemd [ - systemd + systemdLibs ]; enableParallelBuilding = true;