build: Make outputs of node-build-system reproducible.
package.json records two hashes of package.tgz, which change for each build, resulting in non-reproducible builds. * guix/build/node-build-system.scm (repack): Add reproducibility options to tar command.master
parent
16abea6ff1
commit
9c93573d15
|
@ -120,7 +120,14 @@
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
(define* (repack #:key inputs #:allow-other-keys)
|
(define* (repack #:key inputs #:allow-other-keys)
|
||||||
(invoke "tar" "-czf" "../package.tgz" ".")
|
(invoke "tar"
|
||||||
|
;; Add options suggested by https://reproducible-builds.org/docs/archives/
|
||||||
|
"--sort=name"
|
||||||
|
(string-append "--mtime=@" (getenv "SOURCE_DATE_EPOCH"))
|
||||||
|
"--owner=0"
|
||||||
|
"--group=0"
|
||||||
|
"--numeric-owner"
|
||||||
|
"-czf" "../package.tgz" ".")
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
(define* (install #:key outputs inputs #:allow-other-keys)
|
(define* (install #:key outputs inputs #:allow-other-keys)
|
||||||
|
|
Reference in New Issue