Remove dependencies on the Nixpkgs location

This commit is contained in:
Eelco Dolstra
2013-10-23 20:06:39 +02:00
parent 8166b12f0c
commit a3777ba4f9
6 changed files with 19 additions and 18 deletions

View File

@@ -93,8 +93,8 @@ in
default = [];
description = "List of database names and their initial schemas that should be used to create databases on the first startup of MySQL";
example = [
{ name = "foodatabase"; schema = ./foodatabase.sql; }
{ name = "bardatabase"; schema = ./bardatabase.sql; }
{ name = "foodatabase"; schema = literalExample "./foodatabase.sql"; }
{ name = "bardatabase"; schema = literalExample "./bardatabase.sql"; }
];
};