summaryrefslogtreecommitdiff
path: root/gnu/packages/jemalloc.scm
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2020-03-13 00:17:39 +0100
committerMarius Bakke <mbakke@fastmail.com>2020-03-13 00:17:39 +0100
commitf430c621d502b7e6b85f548e85354924a3898562 (patch)
treec716b0c8b24b1101a85662aac6a7e2b09adfcb60 /gnu/packages/jemalloc.scm
parent7688dbbdd7a7a091c9a0fc4850e70725e3ff64e3 (diff)
downloadguix-patches-f430c621d502b7e6b85f548e85354924a3898562.tar
guix-patches-f430c621d502b7e6b85f548e85354924a3898562.tar.gz
gnu: jemalloc: Install scripts to separate output.
* gnu/packages/jemalloc.scm (jemalloc)[outputs]: New field.
Diffstat (limited to 'gnu/packages/jemalloc.scm')
-rw-r--r--gnu/packages/jemalloc.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/jemalloc.scm b/gnu/packages/jemalloc.scm
index 2eabf4403f..c4b87b540d 100644
--- a/gnu/packages/jemalloc.scm
+++ b/gnu/packages/jemalloc.scm
@@ -59,6 +59,9 @@
'()
'(#:configure-flags (list "--disable-thp")))))
(inputs `(("perl" ,perl)))
+ ;; Install the scripts to a separate output to avoid referencing Perl and
+ ;; Bash in the default output, saving ~75 MiB on the closure.
+ (outputs '("out" "bin"))
(home-page "http://jemalloc.net/")
(synopsis "General-purpose scalable concurrent malloc implementation")
(description