lol

nodePackages.manta, nodePackages.triton: add myself as maintainer

teutat3s 91242146 6265851e

+6 -4
+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 ];