Unverified Commit 26f38d62 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

[Backport release-25.11] treewide: fix wrong github releases/tag page url (#466224)

parents 37bcf17e 103142d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ buildGoModule (finalAttrs: {
  meta = {
    description = "Recommends instance types based on resource criteria like vcpus and memory";
    homepage = "https://github.com/aws/amazon-ec2-instance-selector";
    changelog = "https://github.com/aws/amazon-ec2-instance-selector/tags/v${finalAttrs.version}";
    changelog = "https://github.com/aws/amazon-ec2-instance-selector/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ wcarlsen ];
    mainProgram = "ec2-instance-selector";
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ stdenv.mkDerivation (finalAttrs: {
  meta = {
    description = "Advanced cross-platform rhythm game focused on keyboard play";
    homepage = "https://etternaonline.com";
    changelog = "https://github.com/etternagame/etterna/release/tag/v${finalAttrs.version}";
    changelog = "https://github.com/etternagame/etterna/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ alikindsys ];
    mainProgram = "etterna";
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
  meta = {
    description = "Language server for the Gleam programming language";
    homepage = "https://github.com/maurobalbi/glas";
    changelog = "https://github.com/maurobalbi/glas/tag/v${version}";
    changelog = "https://github.com/maurobalbi/glas/releases/tag/v${version}";
    license = with lib.licenses; [
      asl20
      mit
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ buildGoModule (finalAttrs: {
  meta = {
    description = "Tool designed to simplify interaction with Grafana instances";
    homepage = "https://github.com/grafana/grafanactl";
    changelog = "https://github.com/grafana/grafanactl/tags/v${finalAttrs.version}";
    changelog = "https://github.com/grafana/grafanactl/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ wcarlsen ];
    mainProgram = "grafanactl";
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec {
    mainProgram = "nix-your-shell";
    description = "`nix` and `nix-shell` wrapper for shells other than `bash`";
    homepage = "https://github.com/MercuryTechnologies/nix-your-shell";
    changelog = "https://github.com/MercuryTechnologies/nix-your-shell/releases/tags/v${version}";
    changelog = "https://github.com/MercuryTechnologies/nix-your-shell/releases/tag/v${version}";
    license = [ lib.licenses.mit ];
    maintainers = with lib.maintainers; [ _9999years ];
  };
Loading