rPackages.buildRPackage: set built-timestamp to epoch

This commit is contained in:
Justin Bedo 2021-11-17 22:10:51 +11:00
parent 31eccf77fd
commit 5a7000ff27
No known key found for this signature in database
GPG Key ID: 2C18202C56C182BD

View File

@ -36,7 +36,7 @@ stdenv.mkDerivation ({
installPhase = ''
runHook preInstall
mkdir -p $out/library
$rCommand CMD INSTALL $installFlags --configure-args="$configureFlags" -l $out/library .
$rCommand CMD INSTALL --built-timestamp='1970-01-01 00:00:00 UTC' $installFlags --configure-args="$configureFlags" -l $out/library .
runHook postInstall
'';