Renamed buildSolution => build-solution

svn path=/nixpkgs/trunk/; revision=22277
This commit is contained in:
Sander van der Burg 2010-06-15 12:23:28 +00:00
parent cc6acb3e40
commit 2b7faad594
4 changed files with 2 additions and 2 deletions

View File

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

View File

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