about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorisabel <isabel@isabelroses.com>2024-04-28 18:20:40 +0100
committerisabel <isabel@isabelroses.com>2024-04-28 19:46:02 +0100
commit07a57da4df733c09b0c55b4b0acf8b5585f79ffc (patch)
treea340b5acf6dc17f911d5af55bbd6dbe5b2584170 /pkgs/development
parentbb0ac7022fb74b2d4e26153109bc1d5428fca356 (diff)
treewide: adopt orphaned packages
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/go-toml/default.nix3
-rw-r--r--pkgs/development/tools/gotestsum/default.nix3
2 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/tools/go-toml/default.nix b/pkgs/development/tools/go-toml/default.nix
index 2fcb524b5930c..6e0cf84a82cc4 100644
--- a/pkgs/development/tools/go-toml/default.nix
+++ b/pkgs/development/tools/go-toml/default.nix
@@ -1,5 +1,4 @@
 { lib, buildGoModule, fetchFromGitHub }:
-
 buildGoModule rec {
   pname = "go-toml";
   version = "2.2.1";
@@ -25,7 +24,7 @@ buildGoModule rec {
     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;
   };
 }
diff --git a/pkgs/development/tools/gotestsum/default.nix b/pkgs/development/tools/gotestsum/default.nix
index e3528c2721920..c6ff6001e6c75 100644
--- a/pkgs/development/tools/gotestsum/default.nix
+++ b/pkgs/development/tools/gotestsum/default.nix
@@ -2,7 +2,6 @@
 , fetchFromGitHub
 , buildGoModule
 }:
-
 buildGoModule rec {
   pname = "gotestsum";
   version = "1.10.1";
@@ -33,6 +32,6 @@ buildGoModule rec {
     mainProgram = "gotestsum";
     platforms = platforms.linux ++ platforms.darwin;
     license = licenses.asl20;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ isabelroses ];
   };
 }