2021-01-18 22:50:56 -08:00
|
|
|
{ stdenv, fetchurl, pkg-config, pango, glibmm, cairomm, gnome3
|
2017-01-14 11:08:40 -08:00
|
|
|
, ApplicationServices }:
|
2009-09-29 06:39:14 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-23 19:14:37 -08:00
|
|
|
pname = "pangomm";
|
2020-05-06 03:05:28 -07:00
|
|
|
version= "2.42.1";
|
2009-09-29 06:39:14 -07:00
|
|
|
|
2012-01-06 15:03:37 -08:00
|
|
|
src = fetchurl {
|
2018-12-23 19:14:37 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-05-06 03:05:28 -07:00
|
|
|
sha256 = "03zli5amizhv9bfklwfq7xyf0b5dagchx1lnz9f0v1rhk69h9gql";
|
2009-09-29 06:39:14 -07:00
|
|
|
};
|
|
|
|
|
2016-11-14 07:35:46 -08:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ] ++ stdenv.lib.optional stdenv.isDarwin [
|
2017-01-14 11:08:40 -08:00
|
|
|
ApplicationServices
|
|
|
|
];
|
2016-03-10 01:48:35 -08:00
|
|
|
propagatedBuildInputs = [ pango glibmm cairomm ];
|
|
|
|
|
|
|
|
doCheck = true;
|
2009-09-29 06:39:14 -07:00
|
|
|
|
2018-12-23 19:14:37 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-07-03 22:04:58 -07:00
|
|
|
meta = with stdenv.lib; {
|
2009-09-29 06:39:14 -07:00
|
|
|
description = "C++ interface to the Pango text rendering library";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.pango.org/";
|
2014-10-22 15:13:31 -07:00
|
|
|
license = with licenses; [ lgpl2 lgpl21 ];
|
2013-07-03 22:04:58 -07:00
|
|
|
maintainers = with maintainers; [ lovek323 raskin ];
|
|
|
|
platforms = platforms.unix;
|
2009-09-29 06:39:14 -07: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-03 15:49:40 -07: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 06:39:14 -07:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|