about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/glibmm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/glibmm/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/glibmm/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/glibmm/default.nix b/nixpkgs/pkgs/development/libraries/glibmm/default.nix
new file mode 100644
index 000000000000..19567a987212
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/glibmm/default.nix
@@ -0,0 +1,45 @@
+{ lib, stdenv, fetchurl, pkg-config, gnum4, glib, libsigcxx, gnome3, darwin }:
+
+stdenv.mkDerivation rec {
+  pname = "glibmm";
+  version = "2.64.2";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+    sha256 = "1v6lp23fr2qh4zshcnm28sn29j3nzgsvcqj2nhmrnvamipjq4lm7";
+  };
+
+  outputs = [ "out" "dev" ];
+
+  nativeBuildInputs = [
+    pkg-config
+    gnum4
+    glib # for glib-compile-schemas
+  ];
+
+  buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
+    Cocoa
+  ]);
+  propagatedBuildInputs = [ glib libsigcxx ];
+
+  enableParallelBuilding = true;
+
+  doCheck = false; # fails. one test needs the net, another /etc/fstab
+
+  passthru = {
+    updateScript = gnome3.updateScript {
+      packageName = pname;
+    };
+  };
+
+  meta = with lib; {
+    description = "C++ interface to the GLib library";
+
+    homepage = "https://gtkmm.org/";
+
+    license = licenses.lgpl2Plus;
+
+    maintainers = with maintainers; [raskin];
+    platforms = platforms.unix;
+  };
+}