mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
e623569e6a
https://gitlab.gnome.org/GNOME/gspell/-/compare/1.11.1...1.12.0 Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, buildPackages
|
|
, fetchurl
|
|
, pkg-config
|
|
, libxml2
|
|
, autoreconfHook
|
|
, gtk-doc
|
|
, glib
|
|
, gtk3
|
|
, enchant2
|
|
, icu
|
|
, vala
|
|
, gobject-introspection
|
|
, gnome
|
|
, gtk-mac-integration
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gspell";
|
|
version = "1.12.0";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
outputBin = "dev";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "QNKFDxu26HdSRvoeOUOLNsqvvbraHSihn6HKB+H/gq0=";
|
|
};
|
|
|
|
patches = [
|
|
# Extracted from: https://github.com/Homebrew/homebrew-core/blob/2a27fb86b08afc7ae6dff79cf64aafb8ecc93275/Formula/gspell.rb#L125-L149
|
|
./0001-Darwin-build-fix.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
vala
|
|
gobject-introspection
|
|
libxml2
|
|
autoreconfHook
|
|
gtk-doc
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
icu
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
gtk-mac-integration
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
# required for pkg-config
|
|
enchant2
|
|
];
|
|
|
|
configureFlags = [
|
|
"GLIB_COMPILE_RESOURCES=${lib.getDev buildPackages.glib}/bin/glib-compile-resources"
|
|
"GLIB_MKENUMS=${lib.getDev buildPackages.glib}/bin/glib-mkenums"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A spell-checking library for GTK applications";
|
|
homepage = "https://wiki.gnome.org/Projects/gspell";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|