about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-libs/2.14/glibmm/default.nix
blob: 790b006f90a5afa9188d109b65178d76e68b0f69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
args: with args;

stdenv.mkDerivation rec {
  name = "glibmm-2.18.1";

  src = fetchurl {
    url = "mirror://gnome/GNOME/sources/glibmm/2.18/${name}.tar.bz2";
    sha256 = "0jg65hv6pwxqk4fabsjjz2zwn5hb6rgy3szj956avliarbliyr3r";
  };

  buildInputs = [pkgconfig];
  propagatedBuildInputs = [glib libsigcxx];

  meta = {
    description = "C++ interface to the GLib library";

    homepage = http://gtkmm.org/;

    license = "LGPLv2+";
  };
}