mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: jemalloc: Update to 5.0.1.
* gnu/packages/jemalloc.scm (jemalloc): Update to 5.0.1. [inputs]: Add perl.
This commit is contained in:
parent
7f090203d5
commit
475b99fa5c
1 changed files with 4 additions and 4 deletions
|
@ -23,14 +23,13 @@ (define-module (gnu packages jemalloc)
|
||||||
#:use-module ((guix licenses) #:select (bsd-2))
|
#:use-module ((guix licenses) #:select (bsd-2))
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages gcc)
|
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu))
|
||||||
|
|
||||||
(define-public jemalloc
|
(define-public jemalloc
|
||||||
(package
|
(package
|
||||||
(name "jemalloc")
|
(name "jemalloc")
|
||||||
(version "4.5.0")
|
(version "5.0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -38,7 +37,7 @@ (define-public jemalloc
|
||||||
version "/jemalloc-" version ".tar.bz2"))
|
version "/jemalloc-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"10373xhpc10pgmai9fkc1z0rs029qlcb3c0qfnvkbwdlcibdh2cl"))))
|
"1sf3lzgb0y8nnyzmp4zrca3sngdxw3kfh20sna9z03jv74fph528"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -56,6 +55,7 @@ (define-public jemalloc
|
||||||
;; Transparent huge pages are only enabled by default on Intel processors
|
;; Transparent huge pages are only enabled by default on Intel processors
|
||||||
'()
|
'()
|
||||||
'(#:configure-flags (list "--disable-thp")))))
|
'(#:configure-flags (list "--disable-thp")))))
|
||||||
|
(inputs `(("perl" ,perl)))
|
||||||
(home-page "http://jemalloc.net/")
|
(home-page "http://jemalloc.net/")
|
||||||
(synopsis "General-purpose scalable concurrent malloc implementation")
|
(synopsis "General-purpose scalable concurrent malloc implementation")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue