nixpkgs/pkgs/development/libraries/glibmm/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

2021-03-12 00:51:18 +00:00
{ lib, stdenv, fetchurl, pkg-config, gnum4, glib, libsigcxx, gnome3, darwin, meson, ninja }:
2013-02-21 22:36:13 +00:00
stdenv.mkDerivation rec {
2018-12-24 02:53:08 +00:00
pname = "glibmm";
2021-03-12 00:51:18 +00:00
version = "2.64.5";
2013-02-21 22:36:13 +00:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-03-12 00:51:18 +00:00
sha256 = "sha256-UI/IbiyRQRmKoWwiWxb9a5EZF8DTgXYCZShE0Jc+o4Y=";
2013-02-21 22:36:13 +00:00
};
outputs = [ "out" "dev" ];
2016-04-24 18:20:28 +01:00
nativeBuildInputs = [
2021-03-12 00:51:18 +00:00
meson
pkg-config
2021-03-12 00:51:18 +00:00
ninja
gnum4
glib # for glib-compile-schemas
];
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Cocoa
]);
propagatedBuildInputs = [ glib libsigcxx ];
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;
};
};
meta = with lib; {
2013-02-21 22:36:13 +00:00
description = "C++ interface to the GLib library";
homepage = "https://gtkmm.org/";
2013-02-21 22:36:13 +00:00
license = licenses.lgpl2Plus;
2013-02-21 22:36:13 +00:00
maintainers = with maintainers; [raskin];
platforms = platforms.unix;
2013-02-21 22:36:13 +00:00
};
}