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

51 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, R, xvfb_run, utillinux }:
2014-05-04 21:54:11 +00:00
{ name, buildInputs ? [], ... } @ attrs:
stdenv.mkDerivation ({
buildInputs = buildInputs ++ [R] ++
stdenv.lib.optionals attrs.requireX [utillinux xvfb_run];
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
'';
installFlags = if attrs.doCheck or true then
[]
2014-11-21 13:23:36 +00:00
else
[ "--no-test-load" ];
2014-11-21 13:23:36 +00:00
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
$rCommand CMD INSTALL $installFlags --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
'';
checkPhase = ''
# noop since R CMD INSTALL tests packages
'';
} // attrs // {
name = "r-" + name;
})