vsenv, vs90wrapper: delete

This commit is contained in:
Graham Christensen 2018-06-15 22:20:54 -04:00
parent ec092b288f
commit cbae3d171b
No known key found for this signature in database
GPG Key ID: ACA1C1D120C83D5C
4 changed files with 0 additions and 40 deletions

View File

@ -1,18 +0,0 @@
{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;
}

View File

@ -1,7 +0,0 @@
{stdenv, vs}:
{
buildSolution = import ./build-solution.nix {
inherit stdenv vs;
};
}

View File

@ -1,9 +0,0 @@
{stdenv}:
stdenv.mkDerivation {
name = "visual-studio-9.0";
buildCommand = ''
mkdir -p $out/bin
ln -s "/cygdrive/c/Program Files/Microsoft Visual Studio 9.0/VC/vcpackages/vcbuild.exe" $out/bin/vcbuild.exe
'';
}

View File

@ -150,10 +150,6 @@ with pkgs;
ebook2cw = callPackage ../applications/misc/ebook2cw { };
vsenv = callPackage ../build-support/vsenv {
vs = vs90wrapper;
};
fetchbower = callPackage ../build-support/fetchbower {
inherit (nodePackages) bower2nix;
};
@ -7070,8 +7066,6 @@ with pkgs;
valadoc = callPackage ../development/tools/valadoc { };
vs90wrapper = callPackage ../development/compilers/vs90wrapper { };
wla-dx = callPackage ../development/compilers/wla-dx { };
wrapCCWith =