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

24 lines
729 B
Nix
Raw Normal View History

2018-03-21 14:52:05 +00:00
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool}:
2014-01-09 13:21:36 +00:00
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 ];
2018-03-21 14:52:05 +00:00
buildInputs = [ aspell gtk3 enchant isocodes ];
2014-01-09 13:21:36 +00:00
propagatedBuildInputs = [ enchant ];
2017-03-13 01:38:46 +00:00
meta = with stdenv.lib; {
homepage = http://gtkspell.sourceforge.net/;
2014-09-21 17:30:15 +00:00
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
};
}