Unverified Commit da0c2a22 authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

octorus: replace src.rev with srv.tag, add meta.changelog (#489447)

parents 6fcdd7f1 2add28fc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  src = fetchFromGitHub {
    owner = "ushironoko";
    repo = "octorus";
    rev = "v${finalAttrs.version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-20HVES8XgZEgKIijTzo9rV5IRfhyZlY1noX6yHSUf8g=";
  };

@@ -23,6 +23,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  meta = {
    description = "TUI PR review tool for GitHub";
    homepage = "https://github.com/ushironoko/octorus";
    changelog = "https://github.com/ushironoko/octorus/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      matthiasbeyer