gnu: dmidecode: Update to 3.0.

* gnu/packages/admin.scm (dmidecode): Update to 3.0.
[arguments]: Use ’modify-phases’ instead of ‘alist-delete’.
This commit is contained in:
Kei Kebreau 2016-07-31 17:15:25 -04:00
parent a4e6356e11
commit 06438b07b9
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 4 additions and 4 deletions

View File

@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
(define-public dmidecode (define-public dmidecode
(package (package
(name "dmidecode") (name "dmidecode")
(version "2.12") (version "3.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"mirror://savannah/dmidecode/dmidecode-" "mirror://savannah/dmidecode/dmidecode-"
version ".tar.bz2")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi")))) "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases (alist-delete 'configure %standard-phases) '(#:phases (modify-phases %standard-phases (delete 'configure))
#:tests? #f ; no 'check' target #:tests? #f ; no 'check' target
#:make-flags (list (string-append "prefix=" #:make-flags (list (string-append "prefix="
(assoc-ref %outputs "out"))))) (assoc-ref %outputs "out")))))