Merge pull request #272664 from trofi/enchant-update

enchant: 2.6.2 -> 2.6.3

authored by Jan Tojnar and committed by GitHub b9aade0b b70fee56

+2 -11
+2 -11
pkgs/development/libraries/enchant/2.x.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchurl 4 - , fetchpatch 5 4 , aspell 6 5 , groff 7 6 , pkg-config ··· 14 13 15 14 stdenv.mkDerivation rec { 16 15 pname = "enchant"; 17 - version = "2.6.2"; 16 + version = "2.6.3"; 18 17 19 18 outputs = [ "out" "dev" ]; 20 19 21 20 src = fetchurl { 22 21 url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz"; 23 - hash = "sha256-ZoanKOVudg+N7gmiLw+1O0bunb59ZM+eW7NaZYv/fh0="; 22 + hash = "sha256-wcVxnypZfOPgbJOM+5n7aX2gk96nuFfMAE3B3PG7oYI="; 24 23 }; 25 - 26 - patches = [ 27 - # fix build with clang 16 28 - (fetchpatch { 29 - url = "https://github.com/AbiWord/enchant/commit/f71eb22e4af7f9917011807a41cf295d3ce0ccbc.patch"; 30 - hash = "sha256-9WWvpU3HKzPlxNBYQAKPppW6G3kOIC2A+MqX5eheBDA="; 31 - }) 32 - ]; 33 24 34 25 nativeBuildInputs = [ 35 26 groff