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

octorus: init at 0.3.1 (#488674)

parents 1bb179c2 3bada10c
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  rustPlatform,
  installShellFiles,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "octorus";
  version = "0.3.1";

  src = fetchFromGitHub {
    owner = "ushironoko";
    repo = "octorus";
    rev = "v${finalAttrs.version}";
    hash = "sha256-20HVES8XgZEgKIijTzo9rV5IRfhyZlY1noX6yHSUf8g=";
  };

  cargoHash = "sha256-4HHl3SIXqfWOeKFmGqXLTC9veglMAFo1MLJIR/BYr0M=";

  nativeBuildInputs = [ installShellFiles ];

  meta = {
    description = "TUI PR review tool for GitHub";
    homepage = "https://github.com/ushironoko/octorus";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      matthiasbeyer
    ];
    mainProgram = "octorus";
  };
})