tuicam: init at 0.0.2 (#377825)
[NixPkgs.git] / pkgs / by-name / gt / gtkspellmm / package.nix
blob80b65a5d70656f287cec474f9098136979bb9a2b
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   gtk3,
7   glib,
8   glibmm,
9   gtkmm3,
10   gtkspell3,
13 stdenv.mkDerivation rec {
14   pname = "gtkspellmm";
15   version = "3.0.5";
17   src = fetchurl {
18     url = "mirror://sourceforge/project/gtkspell/gtkspellmm/" + "${pname}-${version}.tar.xz";
19     sha256 = "0i8mxwyfv5mskachafa4qlh315q0cfph7s66s1s34nffadbmm1sv";
20   };
22   propagatedBuildInputs = [
23     gtkspell3
24   ];
26   nativeBuildInputs = [ pkg-config ];
27   buildInputs = [
28     gtk3
29     glib
30     glibmm
31     gtkmm3
32   ];
34   meta = with lib; {
35     description = "C++ binding for the gtkspell library";
36     homepage = "https://gtkspell.sourceforge.net/";
37     license = licenses.gpl2;
38     platforms = platforms.linux;
39   };