summary refs log tree commit diff
path: root/pkgs/applications/science/math/R/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2019-04-07 17:37:55 +0200
committerVladimír Čunát <v@cunat.cz>2019-04-07 17:38:45 +0200
commitf7ddff5c6d1504138d1200cccbc74e26e753d54b (patch)
tree73443fd45b1086f968cb7a95aacb9b75178a3edf /pkgs/applications/science/math/R/default.nix
parent780c2de2740a94b1a428351c4e9b4624989a00df (diff)
downloadnixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.tar
nixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.tar.gz
nixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.tar.bz2
nixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.tar.lz
nixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.tar.xz
nixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.tar.zst
nixpkgs-f7ddff5c6d1504138d1200cccbc74e26e753d54b.zip
R: fix regression from commit cbade453 #58989
Normally the directory is created in fixup phase.
Diffstat (limited to 'pkgs/applications/science/math/R/default.nix')
-rw-r--r--pkgs/applications/science/math/R/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix
index ab411999a21..7c32641e9c3 100644
--- a/pkgs/applications/science/math/R/default.nix
+++ b/pkgs/applications/science/math/R/default.nix
@@ -72,7 +72,7 @@ stdenv.mkDerivation rec {
   # The store path to "which" is baked into src/library/base/R/unix/system.unix.R,
   # but Nix cannot detect it as a run-time dependency because the installed file
   # is compiled and compressed, which hides the store path.
-  postInstall = "echo ${which} > $out/nix-support/undetected-runtime-dependencies";
+  postFixup = "echo ${which} > $out/nix-support/undetected-runtime-dependencies";
 
   doCheck = true;
   preCheck = "export TZ=CET; bin/Rscript -e 'sessionInfo()'";