2014-09-11 03:50:49 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gtk3, glib, glibmm, gtkmm3, gtkspell3
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "3.0.3";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gtkspellmm-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-28 12:07:42 +00:00
|
|
|
url = "mirror://sourceforge/project/gtkspell/gtkspellmm/" +
|
2014-09-11 03:50:49 +01:00
|
|
|
"${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;
|
|
|
|
};
|
|
|
|
}
|