nixpkgs/pkgs/development/libraries/gtkspell/3.nix

24 lines
712 B
Nix
Raw Normal View History

2014-01-09 13:21:36 +00:00
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
2017-03-13 01:38:46 +00:00
version = "3.0.9";
2014-09-21 17:30:15 +00:00
2014-01-09 13:21:36 +00:00
src = fetchurl {
2017-03-13 01:38:46 +00:00
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
2014-01-09 13:21:36 +00:00
};
2014-09-21 17:30:15 +00:00
2017-03-13 01:38:46 +00:00
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ aspell gtk3 enchant ];
2014-01-09 13:21:36 +00:00
propagatedBuildInputs = [ enchant ];
2017-03-13 01:38:46 +00:00
meta = with stdenv.lib; {
2014-09-21 17:30:15 +00:00
homepage = "http://gtkspell.sourceforge.net/";
description = "Word-processor-style highlighting GtkTextView widget";
2017-03-13 01:38:46 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ fuuzetsu ];
2014-01-09 13:21:36 +00:00
};
}