From 87da4163085b845e4537311b04ff23375d1932de Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Mon, 6 Sep 2021 00:59:03 -0400 Subject: gnu: racket: suppress build stamp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `build-stamp` configuration key should generally be set to an empty string for a release build. The automatically inferred build stamp is especially unhelpful with Guix, since it ends up being the Unix epoch. * gnu/packages/racket.scm (racket-minimal)[arguments]: Adjust the 'initialize-config.rktd phase to set 'build-stamp to "". Signed-off-by: Ludovic Courtès --- gnu/packages/racket.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/racket.scm b/gnu/packages/racket.scm index 5b3e941e61..661443e0c3 100644 --- a/gnu/packages/racket.scm +++ b/gnu/packages/racket.scm @@ -217,6 +217,7 @@ "/lib")) '("openssl" "sqlite")))) + (build-stamp . "") (catalogs . (,(string-append "https://download.racket-lang.org/releases/" -- cgit v1.2.3