From fc89c62ec75d3cae116e0ad03aae4536fd8eda8f Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Fri, 29 Nov 2024 17:34:43 +0900 Subject: [PATCH] enchant: fix broken release URL The AbiWord fork of enchant does not contain any releases. --- pkgs/development/libraries/enchant/2.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/enchant/2.x.nix b/pkgs/development/libraries/enchant/2.x.nix index dbd7cefacb67..d2f6036437fb 100644 --- a/pkgs/development/libraries/enchant/2.x.nix +++ b/pkgs/development/libraries/enchant/2.x.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { outputs = [ "out" "dev" ]; src = fetchurl { - url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz"; + url = "https://github.com/rrthomas/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz"; hash = "sha256-2aWhDcmzikOzoPoix27W67fgnrU1r/YpVK/NvUDv/2s="; }; @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Generic spell checking library"; - homepage = "https://abiword.github.io/enchant/"; + homepage = "https://rrthomas.github.io/enchant/"; license = licenses.lgpl21Plus; # with extra provision for non-free checkers maintainers = with maintainers; [ jtojnar ]; platforms = platforms.unix;