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

19 lines
609 B
Nix
Raw Normal View History

2018-03-01 02:47:24 +01:00
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala, gobjectIntrospection, gnome3 }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
propagatedBuildInputs = [ enchant ]; # required for pkgconfig
nativeBuildInputs = [ pkgconfig vala gobjectIntrospection ];
2017-12-06 00:31:14 +01:00
buildInputs = [ glib gtk3 isocodes ];
meta = with stdenv.lib; {
2018-02-25 21:24:59 +01: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;
};
}