summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspellmm/default.nix
blob: d24ec46d90532aacdcd80b71a2a2688c3b83cd14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchurl
, pkgconfig
, gtk3, glib, glibmm, gtkmm3, gtkspell3
}:

let
  version = "3.0.3";

in

stdenv.mkDerivation rec {
  name = "gtkspellmm-${version}";

  src = fetchurl {
    url = "http://downloads.sourceforge.net/project/gtkspell/gtkspellmm/" +
          "${name}.tar.gz";
    sha256 = "f9dcc0991621c08e7a972f33487afd6b37491468f0b654f50c741a7e6d810624";
  };

  propagatedBuildInputs = [
    gtkspell3
  ];

  buildInputs = [
    pkgconfig
    gtk3 glib glibmm gtkmm3
  ];

  meta = with stdenv.lib; {
    description = "C++ binding for the gtkspell library";
    homepage = http://gtkspell.sourceforge.net/;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}