r-generic-builder.nix: build packages from the extracted $srcdir so that we have a chance to patch them

This commit is contained in:
Peter Simons 2014-05-07 12:28:46 +02:00
parent af8d34c35e
commit 262aecef74

View file

@ -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
'';