2017-01-14 20:08:40 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm
|
|
|
|
, ApplicationServices }:
|
2009-09-29 15:39:14 +02:00
|
|
|
|
2013-12-10 17:12:32 +01:00
|
|
|
let
|
2016-04-03 08:06:03 +02:00
|
|
|
ver_maj = "2.40";
|
2016-09-29 14:17:19 +02:00
|
|
|
ver_min = "1";
|
2013-12-10 17:12:32 +01:00
|
|
|
in
|
2009-09-29 15:39:14 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-10 17:12:32 +01:00
|
|
|
name = "pangomm-${ver_maj}.${ver_min}";
|
2009-09-29 15:39:14 +02:00
|
|
|
|
2012-01-07 00:03:37 +01:00
|
|
|
src = fetchurl {
|
2013-12-10 17:12:32 +01:00
|
|
|
url = "mirror://gnome/sources/pangomm/${ver_maj}/${name}.tar.xz";
|
2016-09-29 14:17:19 +02:00
|
|
|
sha256 = "9762ee2a2d5781be6797448d4dd2383ce14907159b30bc12bf6b08e7227be3af";
|
2009-09-29 15:39:14 +02:00
|
|
|
};
|
|
|
|
|
2016-11-14 16:35:46 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-01-14 20:08:40 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ stdenv.lib.optional stdenv.isDarwin [
|
|
|
|
ApplicationServices
|
|
|
|
];
|
2016-03-10 10:48:35 +01:00
|
|
|
propagatedBuildInputs = [ pango glibmm cairomm ];
|
|
|
|
|
|
|
|
doCheck = true;
|
2009-09-29 15:39:14 +02:00
|
|
|
|
2013-07-04 07:04:58 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-09-29 15:39:14 +02:00
|
|
|
description = "C++ interface to the Pango text rendering library";
|
2013-07-04 07:04:58 +02:00
|
|
|
homepage = http://www.pango.org/;
|
2014-10-23 00:13:31 +02:00
|
|
|
license = with licenses; [ lgpl2 lgpl21 ];
|
2013-07-04 07:04:58 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 raskin ];
|
|
|
|
platforms = platforms.unix;
|
2009-09-29 15:39:14 +02:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Pango is a library for laying out and rendering of text, with an
|
|
|
|
emphasis on internationalization. Pango can be used anywhere
|
|
|
|
that text layout is needed, though most of the work on Pango so
|
|
|
|
far has been done in the context of the GTK+ widget toolkit.
|
|
|
|
Pango forms the core of text and font handling for GTK+-2.x.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|