Unverified Commit 1e9df596 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

various: remove duplicated `v` prefix in changelog url (#512551)

parents 01f5f4e8 41d7d617
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  meta = {
    description = "Bandwidth Test server and client";
    homepage = "https://github.com/manawenuz/btest-rs";
    changelog = "https://github.com/manawenuz/btest-rs/releases/tag/v${finalAttrs.src.tag}";
    changelog = "https://github.com/manawenuz/btest-rs/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "btest";
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ buildGoModule (finalAttrs: {
    description = "TUI log analysis tool";
    homepage = "https://gonzo.controltheory.com/";
    downloadPage = "https://github.com/control-theory/gonzo";
    changelog = "https://github.com/control-theory/gonzo/releases/tag/v${finalAttrs.src.tag}";
    changelog = "https://github.com/control-theory/gonzo/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ kpbaks ];
    mainProgram = "gonzo";
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
  meta = {
    description = "Run pre-commit.com before `jj git push`";
    homepage = "https://github.com/acarapetis/jj-pre-push";
    changelog = "https://github.com/acarapetis/jj-pre-push/releases/tag/v${finalAttrs.src.tag}";
    changelog = "https://github.com/acarapetis/jj-pre-push/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ xanderio ];
    mainProgram = "jj-pre-push";
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ buildGoModule rec {
  meta = {
    description = "Tool to detect and remediate misconfigurations and security risks of GitHub assets";
    homepage = "https://github.com/Legit-Labs/legitify";
    changelog = "https://github.com/Legit-Labs/legitify/releases/tag/v${src.tag}";
    changelog = "https://github.com/Legit-Labs/legitify/releases/tag/${src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "legitify";
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ buildGoModule (finalAttrs: {
  meta = {
    description = "Tool to work with DNS MX records";
    homepage = "https://github.com/musana/mx-takeover";
    changelog = "https://github.com/musana/mx-takeover/releases/tag/v${finalAttrs.src.tag}";
    changelog = "https://github.com/musana/mx-takeover/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "mx-takeover";
Loading