2018-12-24 04:14:37 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm, gnome3
|
2017-01-14 20:08:40 +01:00
|
|
|
, ApplicationServices }:
|
2009-09-29 15:39:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-24 04:14:37 +01:00
|
|
|
pname = "pangomm";
|
2020-05-06 12:05:28 +02:00
|
|
|
version= "2.42.1";
|
2009-09-29 15:39:14 +02:00
|
|
|
|
2012-01-07 00:03:37 +01:00
|
|
|
src = fetchurl {
|
2018-12-24 04:14:37 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-05-06 12:05:28 +02:00
|
|
|
sha256 = "03zli5amizhv9bfklwfq7xyf0b5dagchx1lnz9f0v1rhk69h9gql";
|
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
|
|
|
|
2018-12-24 04:14:37 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://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
|
2019-09-04 00:49:40 +02:00
|
|
|
far has been done in the context of the GTK widget toolkit.
|
|
|
|
Pango forms the core of text and font handling for GTK.
|
2009-09-29 15:39:14 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|