c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
19 lines
287 B
Nix
19 lines
287 B
Nix
{stdenv, vs}:
|
|
{ name
|
|
, src
|
|
, slnFile
|
|
, baseDir ? "."
|
|
, extraBuildInputs ? []
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit name src;
|
|
installPhase = ''
|
|
cd ${baseDir}
|
|
vcbuild.exe /rebuild ${slnFile}
|
|
mkdir -p $out
|
|
cp Debug/* $out
|
|
'';
|
|
buildInputs = [ vs ] ++ extraBuildInputs;
|
|
}
|