about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/glibmm
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/glibmm')
-rw-r--r--nixpkgs/pkgs/development/libraries/glibmm/default.nix40
1 files changed, 40 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..054e6df0e4c9
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/glibmm/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx, gnome3, darwin }:
+
+stdenv.mkDerivation rec {
+  pname = "glibmm";
+  version = "2.58.0";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+    sha256 = "0idnaii4h3mdym2a55gkavipyxigwvbgfmzmwql85s4rgciqjhfk";
+  };
+
+  outputs = [ "out" "dev" ];
+
+  nativeBuildInputs = [ pkgconfig gnum4 ];
+  buildInputs = stdenv.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 stdenv.lib; {
+    description = "C++ interface to the GLib library";
+
+    homepage = https://gtkmm.org/;
+
+    license = licenses.lgpl2Plus;
+
+    maintainers = with maintainers; [raskin];
+    platforms = platforms.unix;
+  };
+}