gnu: jemalloc: Update to 5.0.1.

* gnu/packages/jemalloc.scm (jemalloc): Update to 5.0.1.
[inputs]: Add perl.
master
Efraim Flashner 2017-08-28 11:45:41 +03:00
parent 7f090203d5
commit 475b99fa5c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 4 deletions

View File

@ -23,14 +23,13 @@
#:use-module ((guix licenses) #:select (bsd-2))
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (gnu packages base)
#:use-module (gnu packages gcc)
#:use-module (gnu packages perl)
#:use-module (guix build-system gnu))
(define-public jemalloc
(package
(name "jemalloc")
(version "4.5.0")
(version "5.0.1")
(source (origin
(method url-fetch)
(uri (string-append
@ -38,7 +37,7 @@
version "/jemalloc-" version ".tar.bz2"))
(sha256
(base32
"10373xhpc10pgmai9fkc1z0rs029qlcb3c0qfnvkbwdlcibdh2cl"))))
"1sf3lzgb0y8nnyzmp4zrca3sngdxw3kfh20sna9z03jv74fph528"))))
(build-system gnu-build-system)
(arguments
`(#:phases
@ -56,6 +55,7 @@
;; Transparent huge pages are only enabled by default on Intel processors
'()
'(#:configure-flags (list "--disable-thp")))))
(inputs `(("perl" ,perl)))
(home-page "http://jemalloc.net/")
(synopsis "General-purpose scalable concurrent malloc implementation")
(description