Merge pull request #85589 from emilazy/add-acme-maintainers-team
Add ACME maintainers team
This commit is contained in:
commit
10bf212b4f
|
@ -17,6 +17,18 @@
|
||||||
|
|
||||||
{ lib }:
|
{ lib }:
|
||||||
with lib.maintainers; {
|
with lib.maintainers; {
|
||||||
|
acme = {
|
||||||
|
members = [
|
||||||
|
aanderse
|
||||||
|
andrew-d
|
||||||
|
arianvp
|
||||||
|
emily
|
||||||
|
flokli
|
||||||
|
m1cr0man
|
||||||
|
];
|
||||||
|
scope = "Maintain ACME-related packages and modules.";
|
||||||
|
};
|
||||||
|
|
||||||
freedesktop = {
|
freedesktop = {
|
||||||
members = [ jtojnar worldofpeace ];
|
members = [ jtojnar worldofpeace ];
|
||||||
scope = "Maintain Freedesktop.org packages for graphical desktop.";
|
scope = "Maintain Freedesktop.org packages for graphical desktop.";
|
||||||
|
|
|
@ -458,7 +458,7 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
maintainers = with lib.maintainers; [ abbradar fpletz globin m1cr0man ];
|
maintainers = lib.teams.acme.members;
|
||||||
doc = ./acme.xml;
|
doc = ./acme.xml;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,8 +12,9 @@ let
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in import ./make-test-python.nix {
|
in import ./make-test-python.nix ({ lib, ... }: {
|
||||||
name = "acme";
|
name = "acme";
|
||||||
|
meta.maintainers = lib.teams.acme.members;
|
||||||
|
|
||||||
nodes = rec {
|
nodes = rec {
|
||||||
acme = { nodes, lib, ... }: {
|
acme = { nodes, lib, ... }: {
|
||||||
|
@ -207,4 +208,4 @@ in import ./make-test-python.nix {
|
||||||
"curl --cacert /tmp/ca.crt https://c.example.test/ | grep -qF 'hello world'"
|
"curl --cacert /tmp/ca.crt https://c.example.test/ | grep -qF 'hello world'"
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
}
|
})
|
||||||
|
|
|
@ -22,6 +22,6 @@ buildGoModule rec {
|
||||||
description = "Let's Encrypt client and ACME library written in Go";
|
description = "Let's Encrypt client and ACME library written in Go";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
homepage = "https://go-acme.github.io/lego/";
|
homepage = "https://go-acme.github.io/lego/";
|
||||||
maintainers = with maintainers; [ andrew-d ];
|
maintainers = teams.acme.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@ in buildGoPackage {
|
||||||
homepage = "https://github.com/letsencrypt/pebble";
|
homepage = "https://github.com/letsencrypt/pebble";
|
||||||
description = "A miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA";
|
description = "A miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA";
|
||||||
license = [ lib.licenses.mpl20 ];
|
license = [ lib.licenses.mpl20 ];
|
||||||
maintainers = with lib.maintainers; [ emily ];
|
maintainers = lib.teams.acme.members;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue