r10k: add anthonyroussel to maintainers

This commit is contained in:
Anthony Roussel 2024-03-24 16:31:44 +01:00
parent 408f89c6cc
commit fd3715a45d
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
1 changed files with 21 additions and 7 deletions

View File

@ -1,4 +1,12 @@
{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, git, gnutar, gzip }:
{
bundlerApp,
bundlerUpdateScript,
git,
gnutar,
gzip,
lib,
makeWrapper,
}:
bundlerApp {
pname = "r10k";
@ -8,17 +16,23 @@ bundlerApp {
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/r10k --prefix PATH : ${lib.makeBinPath [ git gnutar gzip ]}
wrapProgram $out/bin/r10k --prefix PATH : ${
lib.makeBinPath [
git
gnutar
gzip
]
}
'';
passthru.updateScript = bundlerUpdateScript "r10k";
meta = with lib; {
meta = {
description = "Puppet environment and module deployment";
homepage = "https://github.com/puppetlabs/r10k";
license = licenses.asl20;
maintainers = with maintainers; [ zimbatm manveru nicknovitski ];
platforms = platforms.unix;
homepage = "https://github.com/puppetlabs/r10k";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ zimbatm manveru nicknovitski anthonyroussel ];
platforms = lib.platforms.unix;
mainProgram = "r10k";
};
}