about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-24 18:01:24 +0000
committerGitHub <noreply@github.com>2023-11-24 18:01:24 +0000
commit9c362ea6019005051024244fd02171ccd72b7801 (patch)
tree934c92144866efc929377d9ed98252a5ae1f9d2c /pkgs/misc
parent4770ebe75cb932dd7f7941e0360e65832d05f6de (diff)
parent8af08668463ac1bfa35d07ee9a161f841499bb0c (diff)
downloadnixlib-9c362ea6019005051024244fd02171ccd72b7801.tar
nixlib-9c362ea6019005051024244fd02171ccd72b7801.tar.gz
nixlib-9c362ea6019005051024244fd02171ccd72b7801.tar.bz2
nixlib-9c362ea6019005051024244fd02171ccd72b7801.tar.lz
nixlib-9c362ea6019005051024244fd02171ccd72b7801.tar.xz
nixlib-9c362ea6019005051024244fd02171ccd72b7801.tar.zst
nixlib-9c362ea6019005051024244fd02171ccd72b7801.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/drivers/hplip/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index 66b26753095e..0b4abe265060 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -14,16 +14,16 @@
 let
 
   pname = "hplip";
-  version = "3.23.3";
+  version = "3.23.8";
 
   src = fetchurl {
     url = "mirror://sourceforge/hplip/${pname}-${version}.tar.gz";
-    sha256 = "sha256-5CYKmKKx2I0h6CVi3kGaohyVvJ4qzjWDNGqA/SF+B7Y=";
+    hash = "sha256-98wF9ijAz9dQ5UrkFDHB390p6XaC8YtcW6XLLFtLG0Y=";
   };
 
   plugin = fetchurl {
     url = "https://developers.hp.com/sites/default/files/${pname}-${version}-plugin.run";
-    sha256 = "sha256-AyZBiF1B42dGnJeoJLFSCGNK83c86ZAM2uFciuv2H4A=";
+    hash = "sha256-frsgye3f0M3HE2trKRlfFvMnDEwe+z74IumCdVPrcSY=";
   };
 
   hplipState = substituteAll {
@@ -283,6 +283,6 @@ python3Packages.buildPythonApplication {
       then licenses.unfree
       else with licenses; [ mit bsd2 gpl2Plus ];
     platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
-    maintainers = with maintainers; [ ttuegel ];
+    maintainers = with maintainers; [ ttuegel arthsmn ];
   };
 }