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

stdenv.mkDerivation rec {
  name = src.pkgname;

  src = fetchurl_gnome {
    project = "glibmm";
    major = "2"; minor = "28"; patchlevel = "2"; extension = "xz";
    sha256 = "1qyb8jb9avfzcdyhldxx7qljjhf30czwnh7c2r9p0x4nin2rjkpq";
  };

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

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

    homepage = http://gtkmm.org/;

    license = "LGPLv2+";

    maintainers = with stdenv.lib.maintainers; [urkud raskin];
    platforms = stdenv.lib.platforms.linux;
  };
}