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

This commit is contained in:
Sandro 2022-11-11 11:41:02 +01:00 committed by GitHub
commit 5ce5a81443
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View file

@ -280,7 +280,7 @@ final: prev: {
'';
};
manta = prev.manta.override {
manta = prev.manta.override ( oldAttrs: {
nativeBuildInputs = with pkgs; [ nodejs-14_x installShellFiles ];
postInstall = ''
# create completions, following upstream procedure https://github.com/joyent/node-manta/blob/v5.2.3/Makefile#L85-L91
@ -291,7 +291,8 @@ final: prev: {
installShellCompletion --cmd $cmd --bash <(./bin/$cmd --completion)
done
'';
};
meta = oldAttrs.meta // { maintainers = with lib.maintainers; [ teutat3s ]; };
});
mermaid-cli = prev."@mermaid-js/mermaid-cli".override (
if stdenv.isDarwin
@ -533,12 +534,13 @@ final: prev: {
'';
};
triton = prev.triton.override {
triton = prev.triton.override (oldAttrs: {
nativeBuildInputs = [ pkgs.installShellFiles ];
postInstall = ''
installShellCompletion --cmd triton --bash <($out/bin/triton completion)
'';
};
meta = oldAttrs.meta // { maintainers = with lib.maintainers; [ teutat3s ]; };
});
ts-node = prev.ts-node.override {
nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];

View file

@ -45,6 +45,6 @@ rustPlatform.buildRustPackage rec {
description = "S3-compatible object store for small self-hosted geo-distributed deployments";
homepage = "https://garagehq.deuxfleurs.fr";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ nickcao _0x4A6F ];
maintainers = with lib.maintainers; [ nickcao _0x4A6F teutat3s ];
};
}