Unverified Commit b89a7b19 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

okapi-ed: add nadir-ishiguro to maintainers (#511389)

parents fa9579f5 c1f8fc71
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
  ripgrep,
  rustPlatform,
  versionCheckHook,
  nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
  __structuredAttrs = true;
@@ -31,12 +32,18 @@ rustPlatform.buildRustPackage (finalAttrs: {
  nativeInstallCheckInputs = [ versionCheckHook ];
  doInstallCheck = true;

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Find lines across files by regex and edit them all at once with your $EDITOR";
    homepage = "https://github.com/nk9/okapi";
    changelog = "https://github.com/nk9/okapi/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.asl20;
    mainProgram = "okapi";
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ toelke ];
    maintainers = with lib.maintainers; [
      toelke
      nadir-ishiguro
    ];
  };
})