linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / gtkspellmm / default.nix
blob31380b5ab793300a9d3ecbb9ef4dc949af810df0
1 { lib, stdenv, fetchurl
2 , pkg-config
3 , gtk3, glib, glibmm, gtkmm3, gtkspell3
4 }:
6 stdenv.mkDerivation rec {
7   pname = "gtkspellmm";
8   version = "3.0.5";
10   src = fetchurl {
11     url = "mirror://sourceforge/project/gtkspell/gtkspellmm/" +
12           "${pname}-${version}.tar.xz";
13     sha256 = "0i8mxwyfv5mskachafa4qlh315q0cfph7s66s1s34nffadbmm1sv";
14   };
16   propagatedBuildInputs = [
17     gtkspell3
18   ];
20   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [
22     gtk3 glib glibmm gtkmm3
23   ];
25   meta = with lib; {
26     description = "C++ binding for the gtkspell library";
27     homepage = "http://gtkspell.sourceforge.net/";
28     license = licenses.gpl2;
29     platforms = platforms.linux;
30   };