diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-10 13:30:58 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-10 18:19:39 +0100 |
commit | 115cd74da6c00f0c3b6c7d1741e4537c22584014 (patch) | |
tree | 7bbe1bffa92733dbde81c19e031d737483c930ac | |
parent | e35f77e1188092ddd2719b79bcdaf364458b837a (diff) | |
download | guix-115cd74da6c00f0c3b6c7d1741e4537c22584014.tar guix-115cd74da6c00f0c3b6c7d1741e4537c22584014.tar.gz |
gnu: rocksdb: Build reproducibly.
* gnu/packages/databases.scm (rocksdb)[arguments]: Hard code the build date.
-rw-r--r-- | gnu/packages/databases.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 4a520f19ec..8cb2a8738c 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -1386,6 +1386,7 @@ including field and record folding."))) `(#:make-flags (list "CC=gcc" "V=1" ;; Ceph requires that RTTI is enabled. "USE_RTTI=1" + "date=1970-01-01" ; build reproducibly (string-append "INSTALL_PATH=" (assoc-ref %outputs "out")) |