about summary refs log tree commit diff
path: root/pkgs/development/r-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-07 12:28:46 +0200
committerPeter Simons <simons@cryp.to>2014-05-07 12:30:29 +0200
commit262aecef743cfbddabb2a253605f1c69d086adf1 (patch)
treef079e49ec912a7620c6ad3440dc6baee4a8b3344 /pkgs/development/r-modules
parentaf8d34c35ef157ee6140e5b391d3b4a465823772 (diff)
downloadnixlib-262aecef743cfbddabb2a253605f1c69d086adf1.tar
nixlib-262aecef743cfbddabb2a253605f1c69d086adf1.tar.gz
nixlib-262aecef743cfbddabb2a253605f1c69d086adf1.tar.bz2
nixlib-262aecef743cfbddabb2a253605f1c69d086adf1.tar.lz
nixlib-262aecef743cfbddabb2a253605f1c69d086adf1.tar.xz
nixlib-262aecef743cfbddabb2a253605f1c69d086adf1.tar.zst
nixlib-262aecef743cfbddabb2a253605f1c69d086adf1.zip
r-generic-builder.nix: build packages from the extracted $srcdir so that we have a chance to patch them
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 1899eaa61d46..da63566f38bc 100644
--- a/pkgs/development/r-modules/generic-builder.nix
+++ b/pkgs/development/r-modules/generic-builder.nix
@@ -19,7 +19,7 @@ R.stdenv.mkDerivation ({
   installPhase = ''
     runHook preInstall
     mkdir -p $out/library
-    R CMD INSTALL -l $out/library $src
+    R CMD INSTALL -l $out/library .
     runHook postInstall
   '';