Merge pull request #200030 from teutat3s/node-packages/add-myself-as-maintainer

authored by Sandro and committed by GitHub 5ce5a814 cac5e0e4

+7 -5
+6 -4
pkgs/development/node-packages/overrides.nix
··· 280 280 ''; 281 281 }; 282 282 283 - manta = prev.manta.override { 283 + manta = prev.manta.override ( oldAttrs: { 284 284 nativeBuildInputs = with pkgs; [ nodejs-14_x installShellFiles ]; 285 285 postInstall = '' 286 286 # create completions, following upstream procedure https://github.com/joyent/node-manta/blob/v5.2.3/Makefile#L85-L91 ··· 291 291 installShellCompletion --cmd $cmd --bash <(./bin/$cmd --completion) 292 292 done 293 293 ''; 294 - }; 294 + meta = oldAttrs.meta // { maintainers = with lib.maintainers; [ teutat3s ]; }; 295 + }); 295 296 296 297 mermaid-cli = prev."@mermaid-js/mermaid-cli".override ( 297 298 if stdenv.isDarwin ··· 533 534 ''; 534 535 }; 535 536 536 - triton = prev.triton.override { 537 + triton = prev.triton.override (oldAttrs: { 537 538 nativeBuildInputs = [ pkgs.installShellFiles ]; 538 539 postInstall = '' 539 540 installShellCompletion --cmd triton --bash <($out/bin/triton completion) 540 541 ''; 541 - }; 542 + meta = oldAttrs.meta // { maintainers = with lib.maintainers; [ teutat3s ]; }; 543 + }); 542 544 543 545 ts-node = prev.ts-node.override { 544 546 nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];
+1 -1
pkgs/tools/filesystems/garage/default.nix
··· 45 45 description = "S3-compatible object store for small self-hosted geo-distributed deployments"; 46 46 homepage = "https://garagehq.deuxfleurs.fr"; 47 47 license = lib.licenses.agpl3Only; 48 - maintainers = with lib.maintainers; [ nickcao _0x4A6F ]; 48 + maintainers = with lib.maintainers; [ nickcao _0x4A6F teutat3s ]; 49 49 }; 50 50 }