about summary refs log tree commit diff
path: root/pkgs/top-level/dotnet-packages.nix
diff options
context:
space:
mode:
authorGuillaume Maudoux <layus.on@gmail.com>2017-02-07 10:30:36 +0100
committervbgl <vbgl@users.noreply.github.com>2017-02-07 11:35:10 +0100
commitf7b7d8e7b59f5e13338be76256e8b524eb993959 (patch)
treeebff3a938aa9d0858c6ca25fb0935156b1aba83a /pkgs/top-level/dotnet-packages.nix
parent25b61cc897ccca0c01fb2c8cb73cd5a283f749d2 (diff)
dafny: fix meta attribute
Diffstat (limited to 'pkgs/top-level/dotnet-packages.nix')
-rw-r--r--pkgs/top-level/dotnet-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix
index 30267a5ad9689..71f2326b93796 100644
--- a/pkgs/top-level/dotnet-packages.nix
+++ b/pkgs/top-level/dotnet-packages.nix
@@ -288,11 +288,11 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
       rm -f $out/lib/dotnet/${baseName}/dafny{,-server}
     '';
 
-    meta = {
+    meta = with stdenv.lib; {
       description = "A programming language with built-in specification constructs";
       homepage = "http://research.microsoft.com/dafny";
       maintainers = with maintainers; [ layus ];
-      license = licenses.MIT;
+      license = licenses.mit;
       platforms = with platforms; (linux ++ darwin);
     };
   };