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:
parent
26b67c2ef9
commit
214b59a249
@ -1,30 +1,31 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib, libsigcxx }:
|
||||
{ stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx }:
|
||||
|
||||
let
|
||||
ver_maj = "2.44";
|
||||
ver_min = "0";
|
||||
ver_maj = "2.46";
|
||||
ver_min = "3";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "glibmm-${ver_maj}.${ver_min}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/glibmm/${ver_maj}/${name}.tar.xz";
|
||||
sha256 = "1a1fczy7hcpn24fglyn4i79f4yjc8s50is70q03mb294bm1c02hv";
|
||||
sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ pkgconfig gnum4 ];
|
||||
propagatedBuildInputs = [ glib libsigcxx ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
#doCheck = true; # some tests need network
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "C++ interface to the GLib library";
|
||||
|
||||
homepage = http://gtkmm.org/;
|
||||
|
||||
license = stdenv.lib.licenses.lgpl2Plus;
|
||||
license = licenses.lgpl2Plus;
|
||||
|
||||
maintainers = with stdenv.lib.maintainers; [urkud raskin];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = with maintainers; [raskin];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user