[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
253/475: gnu: Add rust-jemalloc-sys-0.5.
From: |
guix-commits |
Subject: |
253/475: gnu: Add rust-jemalloc-sys-0.5. |
Date: |
Sun, 7 May 2023 12:47:16 -0400 (EDT) |
efraim pushed a commit to branch rust-team
in repository guix.
commit 5c5232d43aba77960242143ef6f748c1c17b827c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Mar 9 16:32:14 2023 +0200
gnu: Add rust-jemalloc-sys-0.5.
* gnu/packages/crates-io.scm (rust-jemalloc-sys-0.5): New variable.
(rust-jemalloc-sys-0.3): Inherit from rust-jemalloc-sys-0.5.
---
gnu/packages/crates-io.scm | 46 +++++++++++++++++++++++++++++++++++++---------
1 file changed, 37 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 249f266d81..ce929c6523 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -29943,8 +29943,44 @@ primitives to an @code{io::Write}.")
"Sys functions for the Rust bindings of the javacriptcore library.")
(license license:expat)))
+(define-public rust-jemalloc-sys-0.5
+ (package
+ (name "rust-jemalloc-sys")
+ (version "0.5.3+5.3.0-patched")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "jemalloc-sys" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "18bwwikzq2krgafq3811n1zlsrjrayk0kqmjf6smivd7drhmvggr"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin (delete-file-recursively "jemalloc")))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-cc" ,rust-cc-1)
+ ("rust-libc" ,rust-libc-0.2))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'configure 'override-jemalloc
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((jemalloc (assoc-ref inputs "jemalloc")))
+ ;; This flag is needed when not using the bundled jemalloc.
+ ;; https://github.com/tikv/jemallocator/issues/19
+ (setenv
"CARGO_FEATURE_UNPREFIXED_MALLOC_ON_SUPPORTED_PLATFORMS" "1")
+ (setenv "JEMALLOC_OVERRIDE"
+ (string-append jemalloc "/lib/libjemalloc_pic.a"))))))))
+ (native-inputs
+ (list jemalloc))
+ (home-page "https://github.com/tikv/jemallocator")
+ (synopsis "Rust FFI bindings to jemalloc")
+ (description "This package provides Rust FFI bindings to jemalloc.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-jemalloc-sys-0.3
(package
+ (inherit rust-jemalloc-sys-0.5)
(name "rust-jemalloc-sys")
(version "0.3.2")
(source
@@ -29958,7 +29994,6 @@ primitives to an @code{io::Write}.")
(modules '((guix build utils)))
(snippet
'(begin (delete-file-recursively "jemalloc") #t))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-libc" ,rust-libc-0.2)
@@ -29972,14 +30007,7 @@ primitives to an @code{io::Write}.")
(let ((jemalloc (assoc-ref inputs "jemalloc")))
(setenv "JEMALLOC_OVERRIDE"
(string-append jemalloc "/lib/libjemalloc_pic.a")))
- #t)))))
- (native-inputs
- (list jemalloc))
- (home-page "https://github.com/gnzlbg/jemallocator")
- (synopsis "Rust FFI bindings to jemalloc")
- (description "This package provides Rust FFI bindings to jemalloc.")
- (license (list license:asl2.0
- license:expat))))
+ #t)))))))
(define-public rust-jemalloc-sys-0.1
(package
- 190/475: gnu: Add rust-dcv-color-primitives-0.4., (continued)
- 190/475: gnu: Add rust-dcv-color-primitives-0.4., guix-commits, 2023/05/07
- 196/475: gnu: rust-av-metrics: Update to 0.9.0., guix-commits, 2023/05/07
- 197/475: gnu: rust-bitreader-0.3: Update to 0.3.6., guix-commits, 2023/05/07
- 198/475: gnu: Add rust-cargo-lock-8., guix-commits, 2023/05/07
- 217/475: gnu: rust-wasm-bindgen-macro-0.2: Update to 0.2.84., guix-commits, 2023/05/07
- 219/475: gnu: rust-wasm-bindgen-shared-0.2: Update to 0.2.84., guix-commits, 2023/05/07
- 226/475: gnu: Add rust-serde-big-array-0.4., guix-commits, 2023/05/07
- 224/475: gnu: rav1e: Update to 0.6.3., guix-commits, 2023/05/07
- 240/475: gnu: Add rust-mp4parse-0.12., guix-commits, 2023/05/07
- 248/475: gnu: rust-console-0.15: Update to 0.15.5., guix-commits, 2023/05/07
- 253/475: gnu: Add rust-jemalloc-sys-0.5.,
guix-commits <=
- 255/475: gnu: rust-linked-hash-map-0.5: Update to 0.5.6., guix-commits, 2023/05/07
- 258/475: gnu: Add rust-ron-0.7., guix-commits, 2023/05/07
- 259/475: gnu: rust-signal-hook-mio-0.2: Update to 0.2.3., guix-commits, 2023/05/07
- 261/475: gnu: Add rust-test-case-2., guix-commits, 2023/05/07
- 266/475: gnu: Add rust-normpath-0.3., guix-commits, 2023/05/07
- 265/475: gnu: Add rust-nu-ansi-term-0.46., guix-commits, 2023/05/07
- 278/475: gnu: rust-arbitrary-1: Update to 1.2.3., guix-commits, 2023/05/07
- 283/475: gnu: rust-fixedbitset-0.4: Update to 0.4.2., guix-commits, 2023/05/07
- 285/475: gnu: rust-ring-0.14: Remove pregenerated files., guix-commits, 2023/05/07
- 292/475: gnu: libsequoia: Use existing rust-tokio-1., guix-commits, 2023/05/07