lol
1{ stdenv, fetchurl, pkgconfig, gtk, glibmm, cairomm, pangomm, atkmm }:
2
3stdenv.mkDerivation rec {
4 name = "gtkmm-${minVer}.4";
5 minVer = "2.24";
6
7 src = fetchurl {
8 url = "mirror://gnome/sources/gtkmm/${minVer}/${name}.tar.xz";
9 sha256 = "1vpmjqv0aqb1ds0xi6nigxnhlr0c74090xzi15b92amlzkrjyfj4";
10 };
11
12 nativeBuildInputs = [pkgconfig];
13
14 propagatedBuildInputs = [ glibmm gtk atkmm cairomm pangomm ];
15
16 doCheck = true;
17
18 meta = {
19 description = "C++ interface to the GTK+ graphical user interface library";
20
21 longDescription = ''
22 gtkmm is the official C++ interface for the popular GUI library
23 GTK+. Highlights include typesafe callbacks, and a
24 comprehensive set of widgets that are easily extensible via
25 inheritance. You can create user interfaces either in code or
26 with the Glade User Interface designer, using libglademm.
27 There's extensive documentation, including API reference and a
28 tutorial.
29 '';
30
31 homepage = http://gtkmm.org/;
32
33 license = stdenv.lib.licenses.lgpl2Plus;
34
35 maintainers = with stdenv.lib.maintainers; [ raskin vcunat ];
36 platforms = stdenv.lib.platforms.unix;
37 };
38}