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

31 lines
889 B
Nix
Raw Normal View History

2018-07-07 01:05:42 +02:00
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection, vala}:
2014-01-09 14:21:36 +01:00
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
2017-03-13 02:38:46 +01:00
version = "3.0.9";
2014-09-21 19:30:15 +02:00
2018-03-21 22:52:47 +01:00
outputs = [ "out" "dev" ];
2014-01-09 14:21:36 +01:00
src = fetchurl {
2017-03-13 02:38:46 +01:00
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
2014-01-09 14:21:36 +01:00
};
2014-09-21 19:30:15 +02:00
2018-07-07 01:05:42 +02:00
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection vala ];
2018-03-21 15:52:05 +01:00
buildInputs = [ aspell gtk3 enchant isocodes ];
2014-01-09 14:21:36 +01:00
propagatedBuildInputs = [ enchant ];
2018-07-07 01:05:42 +02:00
configureFlags = [
"--enable-introspection"
"--enable-vala"
];
2018-03-21 22:52:47 +01:00
2017-03-13 02:38:46 +01:00
meta = with stdenv.lib; {
homepage = http://gtkspell.sourceforge.net/;
2014-09-21 19:30:15 +02:00
description = "Word-processor-style highlighting GtkTextView widget";
2017-03-13 02:38:46 +01:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ fuuzetsu ];
2014-01-09 14:21:36 +01:00
};
}