summary refs log tree commit diff
path: root/pkgs/misc/drivers
diff options
context:
space:
mode:
authorVladyslav M <dywedir@protonmail.ch>2018-03-12 21:48:45 +0200
committerVladyslav M <dywedir@protonmail.ch>2018-03-12 21:48:45 +0200
commitbe6d9e1e69c25d4f43b4e935ada1d89236f8e333 (patch)
tree46290300025e688e4de62a08e48a2ca73d277ada /pkgs/misc/drivers
parent1d968d180a92f25c184a1ace68ec3f140b007515 (diff)
downloadnixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.tar
nixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.tar.gz
nixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.tar.bz2
nixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.tar.lz
nixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.tar.xz
nixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.tar.zst
nixlib-be6d9e1e69c25d4f43b4e935ada1d89236f8e333.zip
hplip: 3.17.10 -> 3.17.11
Diffstat (limited to 'pkgs/misc/drivers')
-rw-r--r--pkgs/misc/drivers/hplip/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index f8f8d16d142d..ed29ee1575cc 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -11,16 +11,16 @@
 let
 
   name = "hplip-${version}";
-  version = "3.17.10";
+  version = "3.17.11";
 
   src = fetchurl {
     url = "mirror://sourceforge/hplip/${name}.tar.gz";
-    sha256 = "0v27hg856b5z2rilczcbfgz8ksxn0n810g1glac3mxkj8qbl8wqg";
+    sha256 = "0xda7x7xxjvzn1l0adlvbwcw21crq1r3r79bkf94q3m5i6abx49g";
   };
 
   plugin = fetchurl {
-    url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
-    sha256 = "07am3dnl0ipgfswz5wndprryljh9rqbfhq7mm4d4yyj3bdnnzlig";
+    url = "https://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
+    sha256 = "0vqhwqc33vxncdhbzdchbgrcrxvkwnp7rc2hkswwn9da112s0c9w";
   };
 
   hplipState = substituteAll {
@@ -57,6 +57,7 @@ pythonPackages.buildPythonApplication {
     dbus
     net_snmp
     openssl
+    zlib
   ];
 
   nativeBuildInputs = [
@@ -97,7 +98,7 @@ pythonPackages.buildPythonApplication {
       --with-mimedir=$out/etc/cups
       --enable-policykit
       --disable-qt4
-      ${stdenv.lib.optionals withQt5 "--enable-qt5"}
+      ${stdenv.lib.optionalString withQt5 "--enable-qt5"}
     "
 
     export makeFlags="
@@ -182,7 +183,7 @@ pythonPackages.buildPythonApplication {
 
   meta = with stdenv.lib; {
     description = "Print, scan and fax HP drivers for Linux";
-    homepage = http://hplipopensource.com/;
+    homepage = https://developers.hp.com/hp-linux-imaging-and-printing;
     license = if withPlugin
       then licenses.unfree
       else with licenses; [ mit bsd2 gpl2Plus ];