Unverified Commit 768ec16c authored by Matthias Beyer's avatar Matthias Beyer
Browse files

git-gone: Fetch from codeberg



Repository seems to have moved.

Signed-off-by: default avatarMatthias Beyer <mail@beyermatthias.de>
parent 03b68e81
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  fetchFromCodeberg,
  rustPlatform,
}:

@@ -8,7 +8,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  pname = "git-gone";
  version = "1.3.1";

  src = fetchFromGitHub {
  src = fetchFromCodeberg {
    owner = "swsnr";
    repo = "git-gone";
    tag = "v${finalAttrs.version}";
@@ -19,8 +19,8 @@ rustPlatform.buildRustPackage (finalAttrs: {

  meta = {
    description = "Cleanup stale Git branches of merge requests";
    homepage = "https://github.com/swsnr/git-gone";
    changelog = "https://github.com/swsnr/git-gone/raw/v${finalAttrs.version}/CHANGELOG.md";
    homepage = "https://codeberg.org/swsnr/git-gone";
    changelog = "https://codeberg.org/swsnr/git-gone/raw/v${finalAttrs.version}/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [
      cafkafk