summary refs log tree commit diff
path: root/pkgs/misc/cups
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer@users.noreply.github.com>2022-02-03 10:23:14 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-03 10:24:56 -0800
commitf6068cbf1e9a2223a0942b64018991f8191220d8 (patch)
treedcc950cfd7f11987bce880839cb3ded8abafac79 /pkgs/misc/cups
parent9edef3a262f0ca6cff2aa80a210fcfc73fa269dc (diff)
downloadnixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.tar
nixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.tar.gz
nixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.tar.bz2
nixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.tar.lz
nixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.tar.xz
nixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.tar.zst
nixpkgs-f6068cbf1e9a2223a0942b64018991f8191220d8.zip
Revert "cups: 2.4.0 -> 2.4.1"
This reverts commit 01d86082da7ab8ad86a8cf3742a09f6b5a2ae5f0.
Diffstat (limited to 'pkgs/misc/cups')
-rw-r--r--pkgs/misc/cups/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix
index af43c55072c..2d0129e21c5 100644
--- a/pkgs/misc/cups/default.nix
+++ b/pkgs/misc/cups/default.nix
@@ -26,14 +26,14 @@ stdenv.mkDerivation rec {
   pname = "cups";
 
   # After 2.2.6, CUPS requires headers only available in macOS 10.12+
-  version = if stdenv.isDarwin then "2.2.6" else "2.4.1";
+  version = if stdenv.isDarwin then "2.2.6" else "2.4.0";
 
   src = fetchurl (if stdenv.isDarwin then {
     url = "https://github.com/apple/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
     sha256 = "16qn41b84xz6khrr2pa2wdwlqxr29rrrkjfi618gbgdkq9w5ff20";
   } else {
     url = "https://github.com/OpenPrinting/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
-    sha256 = "sha256-xzOfdfjU8t7FDGczQaRfwGtohbttQ2bWv1mk5sEK4Xg=";
+    sha256 = "1pm6lf08z8vgs62g5b5rjw32qy3vr0q3sgidpg2lfs6a530wxgls";
   });
 
   outputs = [ "out" "lib" "dev" "man" ];