maintainers: rename indeednotjames to emilylange

This commit is contained in:
emilylange 2023-05-21 16:00:44 +02:00
parent 3005f20ce0
commit b0e7f7f5db
No known key found for this signature in database
GPG key ID: 0AD773CE46FD0F87
11 changed files with 16 additions and 16 deletions

View file

@ -4609,6 +4609,12 @@
githubId = 18535642; githubId = 18535642;
name = "Emily"; name = "Emily";
}; };
emilylange = {
email = "nix@emilylange.de";
github = "emilylange";
githubId = 55066419;
name = "Emily Lange";
};
emilytrau = { emilytrau = {
name = "Emily Trau"; name = "Emily Trau";
email = "nix@angus.ws"; email = "nix@angus.ws";
@ -6775,12 +6781,6 @@
githubId = 36667224; githubId = 36667224;
name = "Yingchi Long"; name = "Yingchi Long";
}; };
indeednotjames = {
email = "nix@indeednotjames.com";
github = "IndeedNotJames";
githubId = 55066419;
name = "Emily Lange";
};
indexyz = { indexyz = {
email = "indexyz@pm.me"; email = "indexyz@pm.me";
github = "5aaee9"; github = "5aaee9";

View file

@ -123,6 +123,6 @@ in
}) })
[ "consul-template" "vault-agent" ]); [ "consul-template" "vault-agent" ]);
meta.maintainers = with maintainers; [ indeednotjames tcheronneau ]; meta.maintainers = with maintainers; [ emilylange tcheronneau ];
} }

View file

@ -26,7 +26,7 @@ let
supportedDbTypes = [ "mysql" "postgres" "sqlite3" ]; supportedDbTypes = [ "mysql" "postgres" "sqlite3" ];
makeGiteaTest = type: nameValuePair type (makeTest { makeGiteaTest = type: nameValuePair type (makeTest {
name = "${giteaPackage.pname}-${type}"; name = "${giteaPackage.pname}-${type}";
meta.maintainers = with maintainers; [ aanderse indeednotjames kolaente ma27 ]; meta.maintainers = with maintainers; [ aanderse emilylange kolaente ma27 ];
nodes = { nodes = {
server = { config, pkgs, ... }: { server = { config, pkgs, ... }: {

View file

@ -116,7 +116,7 @@ buildGoModule rec {
homepage = "https://forgejo.org"; homepage = "https://forgejo.org";
changelog = "https://codeberg.org/forgejo/forgejo/releases/tag/v${version}"; changelog = "https://codeberg.org/forgejo/forgejo/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ indeednotjames urandom ]; maintainers = with maintainers; [ emilylange urandom ];
broken = stdenv.isDarwin; broken = stdenv.isDarwin;
mainProgram = "gitea"; mainProgram = "gitea";
}; };

View file

@ -14,7 +14,7 @@ buildGoModule rec {
vendorHash = "sha256-KcNp3VdJ201oxzF0bLXY4xWHqHNz54ZrVSI96cfhU+k="; vendorHash = "sha256-KcNp3VdJ201oxzF0bLXY4xWHqHNz54ZrVSI96cfhU+k=";
meta = with lib; { meta = with lib; {
maintainers = with maintainers; [ endocrimes indeednotjames ]; maintainers = with maintainers; [ endocrimes emilylange ];
license = licenses.unfreeRedistributable; license = licenses.unfreeRedistributable;
homepage = "https://github.com/drone-runners/drone-runner-docker"; homepage = "https://github.com/drone-runners/drone-runner-docker";
description = "Drone pipeline runner that executes builds inside Docker containers"; description = "Drone pipeline runner that executes builds inside Docker containers";

View file

@ -64,6 +64,6 @@ buildGoModule {
homepage = "https://caddyserver.com"; homepage = "https://caddyserver.com";
description = "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS"; description = "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne indeednotjames techknowlogick ]; maintainers = with maintainers; [ Br1ght0ne emilylange techknowlogick ];
}; };
} }

View file

@ -30,6 +30,6 @@ buildGoModule rec {
homepage = "https://github.com/caddyserver/xcaddy"; homepage = "https://github.com/caddyserver/xcaddy";
description = "Build Caddy with plugins"; description = "Build Caddy with plugins";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ tjni indeednotjames ]; maintainers = with maintainers; [ tjni emilylange ];
}; };
} }

View file

@ -109,6 +109,6 @@ in rustPlatform.buildRustPackage (commonDerivationAttrs // {
changelog = "https://github.com/lldap/lldap/blob/v${lldap.version}/CHANGELOG.md"; changelog = "https://github.com/lldap/lldap/blob/v${lldap.version}/CHANGELOG.md";
license = licenses.gpl3Only; license = licenses.gpl3Only;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ indeednotjames bendlas ]; maintainers = with maintainers; [ emilylange bendlas ];
}; };
}) })

View file

@ -71,6 +71,6 @@ buildGoModule rec {
description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud"; description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud";
license = licenses.asl20; license = licenses.asl20;
homepage = "https://grafana.com/products/cloud"; homepage = "https://grafana.com/products/cloud";
maintainers = with maintainers; [ flokli indeednotjames ]; maintainers = with maintainers; [ flokli emilylange ];
}; };
} }

View file

@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/threathunters-io/laurel"; homepage = "https://github.com/threathunters-io/laurel";
changelog = "https://github.com/threathunters-io/laurel/releases/tag/v${version}"; changelog = "https://github.com/threathunters-io/laurel/releases/tag/v${version}";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ indeednotjames ]; maintainers = with maintainers; [ emilylange ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }

View file

@ -55,6 +55,6 @@ buildGoModule rec {
license = with licenses; [ agpl3Only asl20 ]; license = with licenses; [ agpl3Only asl20 ];
homepage = "https://grafana.com/oss/loki/"; homepage = "https://grafana.com/oss/loki/";
changelog = "https://github.com/grafana/loki/releases/tag/v${version}"; changelog = "https://github.com/grafana/loki/releases/tag/v${version}";
maintainers = with maintainers; [ willibutz globin mmahut indeednotjames ]; maintainers = with maintainers; [ willibutz globin mmahut emilylange ];
}; };
} }