mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
69a0de865e
Also add myself as a maintainer to be able to monitor all gtk2/3 deps easily.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl_gnome, pkgconfig, gtk, glibmm, cairomm, pangomm, atkmm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = src.pkgname;
|
|
|
|
src = fetchurl_gnome {
|
|
project = "gtkmm";
|
|
major = "2"; minor = "24"; patchlevel = "4"; extension = "xz";
|
|
sha256 = "1vpmjqv0aqb1ds0xi6nigxnhlr0c74090xzi15b92amlzkrjyfj4";
|
|
};
|
|
|
|
nativeBuildInputs = [pkgconfig];
|
|
|
|
propagatedBuildInputs = [ glibmm gtk atkmm cairomm pangomm ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
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 = http://gtkmm.org/;
|
|
|
|
license = "LGPLv2+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin vcunat ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|