Merge pull request #60407 from peterhoeg/f/emacs

emacs: do not capture build environment details for a reproducible build
This commit is contained in:
John Wiegley 2019-04-30 11:23:57 -05:00 committed by GitHub
commit 0a2bf3b0a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
configureFlags = [ "--with-modules" ] ++
configureFlags = [
"--disable-build-details" # for a (more) reproducible build
"--with-modules"
] ++
(lib.optional stdenv.isDarwin
(lib.withFeature withNS "ns")) ++
(if withNS