foomatic-db-engine: unstable-2024-02-10 -> unstable-2024-04-05

Due to the sole new commit

a2b12271e1
"Fix wget / curl auto-detection at configure"

curl (or wget) is now a mandatory (runtime!) dependency.
This commit is contained in:
Yarny0 2024-04-06 12:21:08 +02:00
parent fd281bd6b7
commit 08fd84846e

View File

@ -24,8 +24,8 @@ perlPackages.buildPerlPackage rec {
# but it gets deleted quickly and would provoke 404 errors # but it gets deleted quickly and would provoke 404 errors
owner = "OpenPrinting"; owner = "OpenPrinting";
repo = "foomatic-db-engine"; repo = "foomatic-db-engine";
rev = "fa91bdfd87da9005591ac2ef2c9c7b8ecdd19511"; rev = "a2b12271e145fe3fd34c3560d276a57e928296cb";
hash = "sha256-Ufy9BtYMD7sUUVfraTmO5e8+nZ4C4up5a5GXeGTtejg="; hash = "sha256-qM12qtGotf9C0cjO9IkmzlW9GWCkT2Um+6dU3mZm3DU=";
}; };
outputs = [ "out" ]; outputs = [ "out" ];
@ -37,9 +37,10 @@ perlPackages.buildPerlPackage rec {
]; ];
buildInputs = buildInputs =
[ curl ]
# provide some "cups-*" commands to `foomatic-{configure,printjob}` # provide some "cups-*" commands to `foomatic-{configure,printjob}`
# so that they can manage a local cups server (add queues, add jobs...) # so that they can manage a local cups server (add queues, add jobs...)
lib.optionals withCupsAccess [ cups cups-filters curl ] ++ lib.optionals withCupsAccess [ cups cups-filters ]
# the commands `foomatic-{configure,getpjloptions}` need # the commands `foomatic-{configure,getpjloptions}` need
# netcat if they are used to query or alter a network # netcat if they are used to query or alter a network
# printer via AppSocket/HP JetDirect protocol # printer via AppSocket/HP JetDirect protocol