Unverified Commit 5ce5a814 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents cac5e0e4 56ab9dd7
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -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 ];
+1 −1
Original line number Diff line number Diff line
@@ -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 ];
  };
}