From ffc82db4a9be62802b8acf45329f3877135934fa Mon Sep 17 00:00:00 2001
From: Sander van der Burg <s.vanderburg@tudelft.nl>
Date: Mon, 12 Jul 2010 11:18:11 +0000
Subject: [PATCH] slnFile can also be a list of strings now

svn path=/nixpkgs/trunk/; revision=22557
---
 pkgs/build-support/dotnetenv/build-solution.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/build-support/dotnetenv/build-solution.nix b/pkgs/build-support/dotnetenv/build-solution.nix
index 495f2f116ea4..65e4ca71475b 100644
--- a/pkgs/build-support/dotnetenv/build-solution.nix
+++ b/pkgs/build-support/dotnetenv/build-solution.nix
@@ -42,7 +42,7 @@ stdenv.mkDerivation {
     fi
     
     ensureDir $out
-    MSBuild.exe ${slnFile} /nologo /t:${targets} /p:IntermediateOutputPath=$(cygpath --windows $out)\\ /p:OutputPath=$(cygpath --windows $out)\\ /verbosity:${verbosity} ${options}
+    MSBuild.exe ${toString slnFile} /nologo /t:${targets} /p:IntermediateOutputPath=$(cygpath --windows $out)\\ /p:OutputPath=$(cygpath --windows $out)\\ /verbosity:${verbosity} ${options}
     
     # Create references to runtime dependencies
     # !!! Should be more efficient (e.g. symlinking)