2019-01-21 16:26:19 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx, gnome3, darwin }:
|
2013-02-21 22:36:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-24 02:53:08 +00:00
|
|
|
pname = "glibmm";
|
2020-05-05 07:33:42 +01:00
|
|
|
version = "2.64.2";
|
2013-02-21 22:36:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-24 02:53:08 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-05-05 07:33:42 +01:00
|
|
|
sha256 = "1v6lp23fr2qh4zshcnm28sn29j3nzgsvcqj2nhmrnvamipjq4lm7";
|
2013-02-21 22:36:13 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-24 18:20:28 +01:00
|
|
|
|
2016-03-10 09:38:36 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gnum4 ];
|
2019-01-21 16:26:19 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
Cocoa
|
|
|
|
]);
|
2013-12-10 16:02:13 +00:00
|
|
|
propagatedBuildInputs = [ glib libsigcxx ];
|
|
|
|
|
2016-03-10 09:38:36 +00:00
|
|
|
enableParallelBuilding = true;
|
2018-08-10 12:20:39 +01:00
|
|
|
|
|
|
|
doCheck = false; # fails. one test needs the net, another /etc/fstab
|
2013-02-21 22:36:13 +00:00
|
|
|
|
2018-12-24 02:53:08 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-03-10 09:38:36 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-21 22:36:13 +00:00
|
|
|
description = "C++ interface to the GLib library";
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gtkmm.org/";
|
2013-02-21 22:36:13 +00:00
|
|
|
|
2016-03-10 09:38:36 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2013-02-21 22:36:13 +00:00
|
|
|
|
2016-03-10 09:38:36 +00:00
|
|
|
maintainers = with maintainers; [raskin];
|
|
|
|
platforms = platforms.unix;
|
2013-02-21 22:36:13 +00:00
|
|
|
};
|
|
|
|
}
|