2014-09-11 03:50:49 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, gtk3, glib, glibmm, gtkmm3, gtkspell3
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gtkspellmm";
|
2018-09-17 17:13:10 +01:00
|
|
|
version = "3.0.5";
|
2014-09-11 03:50:49 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-28 12:07:42 +00:00
|
|
|
url = "mirror://sourceforge/project/gtkspell/gtkspellmm/" +
|
2019-08-15 13:41:18 +01:00
|
|
|
"${pname}-${version}.tar.xz";
|
2018-09-17 17:13:10 +01:00
|
|
|
sha256 = "0i8mxwyfv5mskachafa4qlh315q0cfph7s66s1s34nffadbmm1sv";
|
2014-09-11 03:50:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
gtkspell3
|
|
|
|
];
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-09-11 03:50:49 +01:00
|
|
|
buildInputs = [
|
|
|
|
gtk3 glib glibmm gtkmm3
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ binding for the gtkspell library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gtkspell.sourceforge.net/";
|
2014-09-11 03:50:49 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|