diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-26 01:49:37 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-26 02:30:52 +0200 |
commit | b17004f9f9541acbd07b45e35222e431427bfde0 (patch) | |
tree | 859907703af3d4cfba73552f776b91223c20f31c /gnu/packages/cups.scm | |
parent | 2fba511e0fa2b39218101c2661864b6b570315c2 (diff) | |
download | guix-b17004f9f9541acbd07b45e35222e431427bfde0.tar guix-b17004f9f9541acbd07b45e35222e431427bfde0.tar.gz |
gnu: hplip: Update to 3.18.9.
* gnu/packages/cups.scm (hplip): Update to 3.18.9.
[arguments]: Add the resulting libraries to the build's RUNPATH.
Diffstat (limited to 'gnu/packages/cups.scm')
-rw-r--r-- | gnu/packages/cups.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 81e442eef1..89930874d8 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -396,14 +396,14 @@ device-specific programs to convert and print many types of files.") (define-public hplip (package (name "hplip") - (version "3.18.6") + (version "3.18.9") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/hplip/hplip/" version "/hplip-" version ".tar.gz")) (sha256 (base32 - "0zbv6cp9n3xypf2fg4j6fpz8zkvl0z08lyc1vq1gd04ln1l3xkqf")) + "0g3q5mm2crjyc1z4z6gv4lam6sc5d3diz704djrnpqadk4q3h290")) (modules '((guix build utils))) (snippet ;; Fix type mismatch. @@ -428,6 +428,8 @@ device-specific programs to convert and print many types of files.") `("--disable-network-build" ,(string-append "--prefix=" (assoc-ref %outputs "out")) ,(string-append "--sysconfdir=" (assoc-ref %outputs "out") "/etc") + ,(string-append "LDFLAGS=-Wl,-rpath=" + (assoc-ref %outputs "out") "/lib") ;; Disable until mime.types merging works (FIXME). "--disable-fax-build" "--enable-hpcups-install" |