about summary refs log tree commit diff
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
parent25b61cc897ccca0c01fb2c8cb73cd5a283f749d2 (diff)
downloadnixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.tar
nixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.tar.gz
nixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.tar.bz2
nixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.tar.lz
nixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.tar.xz
nixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.tar.zst
nixlib-f7b7d8e7b59f5e13338be76256e8b524eb993959.zip
dafny: fix meta attribute
-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 30267a5ad968..71f2326b9379 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);
     };
   };