gtkmm3: update 3.16.0 -> 3.18.0
Also remove urkud for maintainers; he's been inactive for years, so let's not bother him anymore.
This commit is contained in:
parent
4f90638d2f
commit
d9f2e282be
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm }:
|
{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy }:
|
||||||
|
|
||||||
let
|
let
|
||||||
ver_maj = "3.16";
|
ver_maj = "3.18";
|
||||||
ver_min = "0";
|
ver_min = "0";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -9,17 +9,18 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz";
|
url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz";
|
||||||
sha256 = "036xn22jkaf3akpid7w23b8vkqa3xxqz93mwacmyar5vw7slm3cv";
|
sha256 = "829fa113daed74398c49c3f2b7672807f58ba85d0fa463f5bc726e1b0138b86b";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ epoxy ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "C++ interface to the GTK+ graphical user interface library";
|
description = "C++ interface to the GTK+ graphical user interface library";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -34,9 +35,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
homepage = http://gtkmm.org/;
|
homepage = http://gtkmm.org/;
|
||||||
|
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ raskin urkud vcunat ];
|
maintainers = with maintainers; [ raskin vcunat ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user