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:30:29 +02:00
parent af8d34c35e
commit 262aecef74
@@ -19,7 +19,7 @@ R.stdenv.mkDerivation ({
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out/library mkdir -p $out/library
R CMD INSTALL -l $out/library $src R CMD INSTALL -l $out/library .
runHook postInstall runHook postInstall
''; '';