diff options
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 195959efd1..eada7962d2 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -183,14 +183,14 @@ graphs and can export its output to different formats.") (define-public htop (package (name "htop") - (version "2.0.1") + (version "2.0.2") (source (origin (method url-fetch) (uri (string-append "http://hisham.hm/htop/releases/" version "/htop-" version ".tar.gz")) (sha256 (base32 - "0rjn9ybqx5sav7z4gn18f1q6k23nmqyb6yydfgghzdznz9nn447l")))) + "11zlwadm6dpkrlfvf3z3xll26yyffa7qrxd1w72y1kl0rgffk6qp")))) (build-system gnu-build-system) (inputs `(("ncurses" ,ncurses))) @@ -981,18 +981,18 @@ network, which causes enabled computers to power on.") (define-public dmidecode (package (name "dmidecode") - (version "2.12") + (version "3.0") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/dmidecode/dmidecode-" - version ".tar.bz2")) + version ".tar.xz")) (sha256 (base32 - "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi")))) + "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy")))) (build-system gnu-build-system) (arguments - '(#:phases (alist-delete 'configure %standard-phases) + '(#:phases (modify-phases %standard-phases (delete 'configure)) #:tests? #f ; no 'check' target #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))))) |