gspell: 1.12.0 → 1.12.1

https://gitlab.gnome.org/GNOME/gspell/-/compare/1.12.0...1.12.1

+5 -14
-8
pkgs/development/libraries/gspell/0001-Darwin-build-fix.patch
··· 11 11 index 69ee421..7c58973 100644 12 12 --- a/gspell/Makefile.am 13 13 +++ b/gspell/Makefile.am 14 - @@ -95,6 +95,7 @@ nodist_libgspell_core_la_SOURCES = \ 15 - $(BUILT_SOURCES) 16 - 17 - libgspell_core_la_LIBADD = \ 18 - + $(GTK_MAC_LIBS) \ 19 - $(CODE_COVERAGE_LIBS) 20 - 21 - libgspell_core_la_CFLAGS = \ 22 14 @@ -161,6 +162,12 @@ gspell_private_headers += \ 23 15 gspell_private_c_files += \ 24 16 gspell-osx.c
+5 -6
pkgs/development/libraries/gspell/default.nix
··· 1 - { lib, stdenv 1 + { stdenv 2 + , lib 2 3 , buildPackages 3 4 , fetchurl 4 5 , pkg-config ··· 12 13 , vala 13 14 , gobject-introspection 14 15 , gnome 15 - , gtk-mac-integration 16 16 }: 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "gspell"; 20 - version = "1.12.0"; 20 + version = "1.12.1"; 21 21 22 22 outputs = [ "out" "dev" ]; 23 23 outputBin = "dev"; 24 24 25 25 src = fetchurl { 26 26 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 27 - sha256 = "QNKFDxu26HdSRvoeOUOLNsqvvbraHSihn6HKB+H/gq0="; 27 + sha256 = "jsRPMgUuiW/N1JJuuBSjJuOaUEfiUe7HuQVvvZREsPE="; 28 28 }; 29 29 30 30 patches = [ 31 31 # Extracted from: https://github.com/Homebrew/homebrew-core/blob/2a27fb86b08afc7ae6dff79cf64aafb8ecc93275/Formula/gspell.rb#L125-L149 32 + # Dropped the GTK_MAC_* changes since gtk-mac-integration is not needed since 1.12.1 32 33 ./0001-Darwin-build-fix.patch 33 34 ]; 34 35 ··· 45 46 buildInputs = [ 46 47 gtk3 47 48 icu 48 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 49 - gtk-mac-integration 50 49 ]; 51 50 52 51 propagatedBuildInputs = [