From 5e77f648880ea9bd450b073c16b076f097bf27c4 Mon Sep 17 00:00:00 2001 From: whispers Date: Fri, 22 May 2026 15:37:53 -0400 Subject: [PATCH] libaec: switch source to github The old source, https://gitlab.dkrz.de/k202009/libaec, is now a redirect to https://gitlab.dkrz.de/dkrz-sw/libaec, and the top of this README links to https://github.com/Deutsches-Klimarechenzentrum/libaec as the source before the GitLab. Additionally, pull requests are being made on GitHub (https://github.com/Deutsches-Klimarechenzentrum/libaec/pulls) and commits seem to be mirrored to GitLab. Thus, it seems like the GitHub is now the primary development repository, so we fetch the source from there instead. --- pkgs/by-name/li/libaec/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/li/libaec/package.nix b/pkgs/by-name/li/libaec/package.nix index 9c44a97c5540..c9824823b669 100644 --- a/pkgs/by-name/li/libaec/package.nix +++ b/pkgs/by-name/li/libaec/package.nix @@ -1,7 +1,7 @@ { lib, stdenv, - fetchFromGitLab, + fetchFromGitHub, cmake, }: @@ -9,9 +9,8 @@ stdenv.mkDerivation (finalAttrs: { pname = "libaec"; version = "1.1.6"; - src = fetchFromGitLab { - domain = "gitlab.dkrz.de"; - owner = "k202009"; + src = fetchFromGitHub { + owner = "Deutsches-Klimarechenzentrum"; repo = "libaec"; tag = "v${finalAttrs.version}"; hash = "sha256-cxDP+JNwokxgzH9hO2zw+rIcz8XG7E8ujbAbWpgUEW8="; @@ -24,7 +23,8 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; meta = { - homepage = "https://gitlab.dkrz.de/k202009/libaec"; + changelog = "https://github.com/Deutsches-Klimarechenzentrum/libaec/blob/v${finalAttrs.version}/CHANGELOG.md"; + homepage = "https://github.com/Deutsches-Klimarechenzentrum/libaec"; description = "Adaptive Entropy Coding library"; license = lib.licenses.bsd2; maintainers = [ ];