about summary refs log tree commit diff
path: root/pkgs/development/tools/go-toml/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/go-toml/default.nix')
-rw-r--r--pkgs/development/tools/go-toml/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/tools/go-toml/default.nix b/pkgs/development/tools/go-toml/default.nix
index 2fcb524b5930c..24b673cbf0217 100644
--- a/pkgs/development/tools/go-toml/default.nix
+++ b/pkgs/development/tools/go-toml/default.nix
@@ -1,5 +1,8 @@
-{ lib, buildGoModule, fetchFromGitHub }:
-
+{
+  lib,
+  buildGoModule,
+  fetchFromGitHub,
+}:
 buildGoModule rec {
   pname = "go-toml";
   version = "2.2.1";
@@ -19,13 +22,16 @@ buildGoModule rec {
     "cmd/tomltestgen"
   ];
 
-  ldflags = [ "-s" "-w" ];
+  ldflags = [
+    "-s"
+    "-w"
+  ];
 
   meta = with lib; {
     description = "Go library for the TOML language";
     homepage = "https://github.com/pelletier/go-toml";
     changelog = "https://github.com/pelletier/go-toml/releases/tag/v${version}";
-    maintainers = [ ];
+    maintainers = [ maintainers.isabelroses ];
     license = licenses.mit;
   };
 }