Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / gtkmm / 2.x.nix
blob284ee83c2d4f4b320d548c5b2fc9f31c15b5392b
1 { lib, stdenv, fetchurl, pkg-config, gtk2, glibmm, cairomm, pangomm, atkmm }:
3 stdenv.mkDerivation rec {
4   pname = "gtkmm";
5   version = "2.24.5";
7   src = fetchurl {
8     url = "mirror://gnome/sources/gtkmm/${lib.versions.majorMinor version}/gtkmm-${version}.tar.xz";
9     sha256 = "0680a53b7bf90b4e4bf444d1d89e6df41c777e0bacc96e9c09fc4dd2f5fe6b72";
10   };
12   outputs = [ "out" "dev" ];
14   nativeBuildInputs = [ pkg-config ];
16   propagatedBuildInputs = [ glibmm gtk2 atkmm cairomm pangomm ];
18   doCheck = true;
20   enableParallelBuilding = true;
22   meta = {
23     description = "C++ interface to the GTK graphical user interface library";
25     longDescription = ''
26       gtkmm is the official C++ interface for the popular GUI library
27       GTK.  Highlights include typesafe callbacks, and a
28       comprehensive set of widgets that are easily extensible via
29       inheritance.  You can create user interfaces either in code or
30       with the Glade User Interface designer, using libglademm.
31       There's extensive documentation, including API reference and a
32       tutorial.
33     '';
35     homepage = "https://gtkmm.org/";
37     license = lib.licenses.lgpl2Plus;
39     maintainers = with lib.maintainers; [ raskin ];
40     platforms = lib.platforms.unix;
41   };