mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
19 lines
601 B
Nix
19 lines
601 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala, gobjectIntrospection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
propagatedBuildInputs = [ enchant ]; # required for pkgconfig
|
|
|
|
nativeBuildInputs = [ pkgconfig vala gobjectIntrospection ];
|
|
buildInputs = [ glib gtk3 isocodes ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A spell-checking library for GTK+ applications";
|
|
homepage = https://wiki.gnome.org/Projects/gspell;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = gnome3.maintainers;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|