Unverified Commit 0c6bb6dc authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

various: Fix dead changelog urls (#514344)

parents ac566f6e 0a91abb0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -44,7 +44,6 @@ stdenv.mkDerivation (finalAttrs: {
      be used to filter and format appointments, making it suitable for use in scripts.
    '';
    homepage = "https://calcurse.org/";
    changelog = "https://git.calcurse.org/calcurse.git/plain/CHANGES.md?h=v${finalAttrs.version}";
    license = lib.licenses.bsd2;
    platforms = lib.platforms.unix;
    maintainers = [ lib.maintainers.matthiasbeyer ];
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
    description = "Cargo subcommand to show crates info from crates.io";
    mainProgram = "cargo-info";
    homepage = "https://gitlab.com/imp/cargo-info";
    changelog = "https://gitlab.com/imp/cargo-info/-/blob/${finalAttrs.src.rev}/CHANGELOG.md";
    changelog = "https://gitlab.com/imp/cargo-info/-/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = with lib.licenses; [
      mit
      asl20
+2 −2
Original line number Diff line number Diff line
@@ -31,8 +31,8 @@ rustPlatform.buildRustPackage (finalAttrs: {
  meta = {
    description = "List and diff the public API of Rust library crates between releases and commits. Detect breaking API changes and semver violations";
    mainProgram = "cargo-public-api";
    homepage = "https://github.com/Enselic/cargo-public-api";
    changelog = "https://github.com/Enselic/cargo-public-api/releases/tag/v${finalAttrs.version}";
    homepage = "https://github.com/cargo-public-api/cargo-public-api";
    changelog = "https://github.com/cargo-public-api/cargo-public-api/blob/v${finalAttrs.version}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ matthiasbeyer ];
  };
+3 −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,7 @@ 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";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [
      cafkafk
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
  meta = {
    description = "Create `.gitignore` files using one or more templates from TopTal, GitHub or your own collection";
    homepage = "https://github.com/reemus-dev/gitnr";
    changelog = "https://github.com/reemus-dev/gitnr/blob/${finalAttrs.src.rev}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      matthiasbeyer
Loading