mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy }:
|
|
|
|
let
|
|
ver_maj = "3.22";
|
|
ver_min = "2";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkmm-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz";
|
|
sha256 = "91afd98a31519536f5f397c2d79696e3d53143b80b75778521ca7b48cb280090";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ epoxy ];
|
|
|
|
propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=764521
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ interface to the GTK+ graphical user interface library";
|
|
|
|
longDescription = ''
|
|
gtkmm is the official C++ interface for the popular GUI library
|
|
GTK+. Highlights include typesafe callbacks, and a
|
|
comprehensive set of widgets that are easily extensible via
|
|
inheritance. You can create user interfaces either in code or
|
|
with the Glade User Interface designer, using libglademm.
|
|
There's extensive documentation, including API reference and a
|
|
tutorial.
|
|
'';
|
|
|
|
homepage = https://gtkmm.org/;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ raskin vcunat ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|