about summary refs log tree commit diff
path: root/pkgs/development/libraries/glibmm/2.18.x.nix
blob: b5f8ebf7eb11d825395acd8650e77a7cb0ade9e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, glib, libsigcxx }:

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

  src = fetchurl {
    url = "mirror://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+";
  };
}