nixpkgs/pkgs/development/r-modules/generic-builder.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2014-11-21 13:23:36 +00:00
{ R, xvfb_run, utillinux }:
2014-05-04 21:54:11 +00:00
{ name, buildInputs ? [], ... } @ attrs:
R.stdenv.mkDerivation ({
2014-11-21 13:23:36 +00:00
buildInputs = buildInputs ++ [R xvfb_run utillinux];
2014-05-04 21:54:11 +00:00
configurePhase = ''
runHook preConfigure
export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library"
runHook postConfigure
'';
buildPhase = ''
runHook preBuild
runHook postBuild
'';
2014-11-21 13:23:36 +00:00
installOptions = if attrs.skipTest or false then
"--no-test-load "
else
"";
rCommand = if attrs.requireX or false then
# Unfortunately, xvfb-run has a race condition even with -a option, so that
# we acquire a lock explicitly.
"flock ${xvfb_run} xvfb-run -a -e xvfb-error R"
else
"R";
2014-05-04 21:54:11 +00:00
installPhase = ''
runHook preInstall
mkdir -p $out/library
2014-11-21 13:23:36 +00:00
$rCommand CMD INSTALL $installOptions --configure-args="$configureFlags" -l $out/library .
2014-05-04 21:54:11 +00:00
runHook postInstall
'';
postFixup = ''
if test -e $out/nix-support/propagated-native-build-inputs; then
ln -s $out/nix-support/propagated-native-build-inputs $out/nix-support/propagated-user-env-packages
fi
'';
} // attrs // {
name = "r-" + name;
})