nixpkgs/pkgs/development/libraries/gspell/default.nix

36 lines
1004 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libxml2, glib, gtk3, enchant2, isocodes, vala, gobject-introspection, gnome3 }:
2018-03-14 13:58:39 +00:00
let
pname = "gspell";
2020-01-26 22:17:39 +00:00
version = "1.8.3";
2018-03-14 13:58:39 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
outputs = [ "out" "dev" ];
outputBin = "dev";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2020-01-26 22:17:39 +00:00
sha256 = "1s1dns070pz8dg04ppshdbx1r86n9406vkxcfs8hdghn0bfi9ras";
};
2018-03-14 13:58:39 +00:00
propagatedBuildInputs = [ enchant2 ]; # required for pkgconfig
nativeBuildInputs = [ pkgconfig vala gobject-introspection libxml2 ];
2017-12-05 23:31:14 +00:00
buildInputs = [ glib gtk3 isocodes ];
2018-03-14 13:58:39 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = with stdenv.lib; {
description = "A spell-checking library for GTK applications";
2018-02-25 20:24:59 +00:00
homepage = https://wiki.gnome.org/Projects/gspell;
license = licenses.lgpl21Plus;
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}