libaec: switch source to github (#523133)

This commit is contained in:
Yohann Boniface
2026-05-22 22:01:11 +00:00
committed by GitHub
+5 -5
View File
@@ -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 = [ ];