summary refs log tree commit diff
path: root/pkgs/development/tools/delve
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/delve')
-rw-r--r--pkgs/development/tools/delve/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/delve/default.nix b/pkgs/development/tools/delve/default.nix
index 66bceb92453..3671a3dcca9 100644
--- a/pkgs/development/tools/delve/default.nix
+++ b/pkgs/development/tools/delve/default.nix
@@ -14,11 +14,11 @@ buildGoPackage rec {
     sha256 = "1241zqyimgqil4qd72f0yiw935lkdmfr88kvqbkn9n05k7xhdg30";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "debugger for the Go programming language";
     homepage = https://github.com/derekparker/delve;
-    maintainers = with stdenv.lib.maintainers; [ vdemeester ];
-    license = stdenv.lib.licenses.mit;
-    platforms = [ "x86_64-linux" ];
+    maintainers = with maintainers; [ vdemeester ];
+    license = licenses.mit;
+    platforms = [ "x86_64-linux" ] ++ platforms.darwin;
   };
 }