1{ stdenv, fetchurl
2, pkgconfig
3, gtk3, glib, glibmm, gtkmm3, gtkspell3
4}:
5
6let
7 version = "3.0.3";
8
9in
10
11stdenv.mkDerivation rec {
12 name = "gtkspellmm-${version}";
13
14 src = fetchurl {
15 url = "http://downloads.sourceforge.net/project/gtkspell/gtkspellmm/" +
16 "${name}.tar.gz";
17 sha256 = "f9dcc0991621c08e7a972f33487afd6b37491468f0b654f50c741a7e6d810624";
18 };
19
20 propagatedBuildInputs = [
21 gtkspell3
22 ];
23
24 buildInputs = [
25 pkgconfig
26 gtk3 glib glibmm gtkmm3
27 ];
28
29 meta = with stdenv.lib; {
30 description = "C++ binding for the gtkspell library";
31 homepage = http://gtkspell.sourceforge.net/;
32 license = licenses.gpl2;
33 platforms = platforms.linux;
34 };
35}