[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: next: Compress the executable.
From: |
guix-commits |
Subject: |
02/02: gnu: next: Compress the executable. |
Date: |
Thu, 5 Sep 2019 05:56:03 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit 0e8b91dbc45306984d682307d8b40b0e323bb4be
Author: Pierre Neidhardt <address@hidden>
Date: Thu Sep 5 11:53:52 2019 +0200
gnu: next: Compress the executable.
* gnu/packages/web-browsers.scm (next)[arguments]: Compressing the
executable
brings it from about 95 MiB to 22 MiB.
---
gnu/packages/web-browsers.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 3368772..dec286b 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -480,6 +480,7 @@ features for productive professionals.")
(build-program
(string-append (assoc-ref outputs "out") "/bin/next")
outputs
+ #:compress? #t
#:entry-program '((next:entry-point) 0))))
(add-before 'build 'install-assets
;; Since the ASDF build system generates a new .asd with
a