glibmm: update 2.44.0 -> 2.46.3

Also drop urkud from maintainers; he's been inactive for years,
so let's not bother him.
This commit is contained in:
Vladimír Čunát 2016-03-10 10:38:36 +01:00
parent 26b67c2ef9
commit 214b59a249

View File

@ -1,30 +1,31 @@
{ stdenv, fetchurl, pkgconfig, glib, libsigcxx }: { stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx }:
let let
ver_maj = "2.44"; ver_maj = "2.46";
ver_min = "0"; ver_min = "3";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "glibmm-${ver_maj}.${ver_min}"; name = "glibmm-${ver_maj}.${ver_min}";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/glibmm/${ver_maj}/${name}.tar.xz"; url = "mirror://gnome/sources/glibmm/${ver_maj}/${name}.tar.xz";
sha256 = "1a1fczy7hcpn24fglyn4i79f4yjc8s50is70q03mb294bm1c02hv"; sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig gnum4 ];
propagatedBuildInputs = [ glib libsigcxx ]; propagatedBuildInputs = [ glib libsigcxx ];
enableParallelBuilding = true;
#doCheck = true; # some tests need network #doCheck = true; # some tests need network
meta = { meta = with stdenv.lib; {
description = "C++ interface to the GLib library"; description = "C++ interface to the GLib library";
homepage = http://gtkmm.org/; homepage = http://gtkmm.org/;
license = stdenv.lib.licenses.lgpl2Plus; license = licenses.lgpl2Plus;
maintainers = with stdenv.lib.maintainers; [urkud raskin]; maintainers = with maintainers; [raskin];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
}; };
} }