summary refs log tree commit diff
path: root/pkgs/development/r-modules
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2021-11-17 22:10:51 +1100
committerJustin Bedo <cu@cua0.org>2021-11-17 22:10:51 +1100
commit5a7000ff2706297f68cb149b5c60cc9439655956 (patch)
treebd4aa67ed156fc508bd5a2c9fdc2d76d897f122f /pkgs/development/r-modules
parent31eccf77fdab279cc9a023a51abbe267a389d1ab (diff)
downloadnixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.tar
nixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.tar.gz
nixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.tar.bz2
nixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.tar.lz
nixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.tar.xz
nixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.tar.zst
nixpkgs-5a7000ff2706297f68cb149b5c60cc9439655956.zip
rPackages.buildRPackage: set built-timestamp to epoch
Diffstat (limited to 'pkgs/development/r-modules')
-rw-r--r--pkgs/development/r-modules/generic-builder.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/r-modules/generic-builder.nix b/pkgs/development/r-modules/generic-builder.nix
index 7201bab40e1..880fff44ed6 100644
--- a/pkgs/development/r-modules/generic-builder.nix
+++ b/pkgs/development/r-modules/generic-builder.nix
@@ -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
   '';