gnu: cifs-utils: Update to 6.9.

* gnu/packages/samba.scm (cifs-utils): Update to 6.9.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-11 03:20:14 +02:00
parent 1a0a4a6970
commit 89ab360e01
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 3 deletions

View File

@ -56,14 +56,14 @@
(define-public cifs-utils
(package
(name "cifs-utils")
(version "6.8")
(version "6.9")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.samba.org/pub/linux-cifs/"
"cifs-utils/cifs-utils-" version ".tar.bz2"))
(sha256 (base32
"0ygz3pagjpaj5ky11hzh4byyymb7fpmqiqkprn11zwj31h2zdlg7"))))
"175cp509wn1zv8p8mv37hkf6sxiskrsxdnq22mhlsg61jazz3n0q"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
@ -80,7 +80,8 @@
`(#:phases
(modify-phases %standard-phases
(add-before 'configure 'set-root-sbin
(lambda _ ; Don't try to install in "/sbin".
(lambda _
;; Don't try to install into "/sbin".
(setenv "ROOTSBINDIR"
(string-append (assoc-ref %outputs "out") "/sbin"))
#t)))))