nixpkgs/pkgs/desktops/gnome-3/misc/gspell/default.nix

29 lines
913 B
Nix
Raw Normal View History

2018-02-28 17:47:24 -08:00
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala, gobjectIntrospection, gnome3 }:
stdenv.mkDerivation rec {
name = "gspell-${version}";
2018-03-12 18:03:18 -07:00
version = "1.8.0";
src = fetchurl {
url = "mirror://gnome/sources/gspell/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-12 18:03:18 -07:00
sha256 = "0ickabxngl567lv1jax4fasr5brq29hg04ymaay47pjfp32w4zqv";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "gspell"; attrPath = "gnome3.gspell"; };
};
propagatedBuildInputs = [ enchant ]; # required for pkgconfig
nativeBuildInputs = [ pkgconfig vala gobjectIntrospection ];
2017-12-05 15:31:14 -08:00
buildInputs = [ glib gtk3 isocodes ];
meta = with stdenv.lib; {
2018-02-25 12:24:59 -08:00
description = "A spell-checking library for GTK+ applications";
homepage = https://wiki.gnome.org/Projects/gspell;
license = licenses.lgpl21Plus;
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}