Skip to content

Commit

Permalink
Remove tailhook from maintainers
Browse files Browse the repository at this point in the history
  • Loading branch information
tailhook committed Jul 22, 2023
1 parent 0a27456 commit 366404a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/languages-frameworks/rust.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage rec {
description = "A fast line-oriented regex search tool, similar to ag and ack";
homepage = "https://github.com/BurntSushi/ripgrep";
license = licenses.unlicense;
maintainers = [ maintainers.tailhook ];
maintainers = [];
};
}
```
Expand Down Expand Up @@ -926,7 +926,7 @@ rustPlatform.buildRustPackage rec {
description = "A fast line-oriented regex search tool, similar to ag and ack";
homepage = "https://github.com/BurntSushi/ripgrep";
license = with licenses; [ mit unlicense ];
maintainers = with maintainers; [ tailhook ];
maintainers = with maintainers; [];
};
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildGoPackage rec {
homepage = "https://docs.docker.com/machine/";
description = "Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage Docker Engine on the hosts";
license = licenses.asl20;
maintainers = with maintainers; [ offline tailhook ];
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/docker/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ rec {
To enable the docker daemon on NixOS, set the `virtualisation.docker.enable` option to `true`.
'';
license = licenses.asl20;
maintainers = with maintainers; [ offline tailhook vdemeester periklis mikroskeem maxeaubrey ];
maintainers = with maintainers; [ offline vdemeester periklis mikroskeem maxeaubrey ];
};
});

Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/text/ripgrep/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ rustPlatform.buildRustPackage rec {
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
homepage = "https://github.com/BurntSushi/ripgrep";
license = with licenses; [ unlicense /* or */ mit ];
maintainers = with maintainers; [ tailhook globin ma27 zowoq ];
maintainers = with maintainers; [ globin ma27 zowoq ];
mainProgram = "rg";
};
}

0 comments on commit 366404a

Please sign in to comment.