Unverified Commit c985b93f authored by Matthias Beyer's avatar Matthias Beyer
Browse files

git-gone: 1.2.5 -> 1.3.1

parent 6f49de06
Loading
Loading
Loading
Loading
+3 −24
Original line number Diff line number Diff line
@@ -2,41 +2,20 @@
  lib,
  fetchFromGitHub,
  rustPlatform,
  installShellFiles,
  asciidoctor,
}:

rustPlatform.buildRustPackage rec {
  pname = "git-gone";
  version = "1.2.5";
  version = "1.3.1";

  src = fetchFromGitHub {
    owner = "swsnr";
    repo = "git-gone";
    tag = "v${version}";
    hash = "sha256-4BhFombZCmv/GNG2OcNlWNKTk2h65yKn1ku734gCBCQ=";
    hash = "sha256-/8ujbZ7FQTZzTG4HnHg6v3rWhxt2PuSGwIJpBVTxhfM=";
  };

  # remove if updating to rust 1.85
  postPatch = ''
    substituteInPlace Cargo.toml \
      --replace-fail "[package]" ''$'cargo-features = ["edition2024"]\n[package]'
  '';

  cargoHash = "sha256-VjnnrVN+uST99paImI1uNj34CNozid7ZiPslJqvmKCs=";

  # remove if updating to rust 1.85
  env.RUSTC_BOOTSTRAP = 1;

  nativeBuildInputs = [
    installShellFiles
    asciidoctor
  ];

  postInstall = ''
    asciidoctor --backend=manpage git-gone.1.adoc -o git-gone.1
    installManPage git-gone.1
  '';
  cargoHash = "sha256-93nZhZOtti28FetuOYtvh6LOtQJV+cEHbOkrJ+3m1m4=";

  meta = {
    description = "Cleanup stale Git branches of merge requests";