cosmic-term: 1.0.0-alpha.3 -> 1.0.0-alpha.5.1 (#374031)
[NixPkgs.git] / pkgs / development / libraries / pangomm / 2.42.nix
blobe855aeb3659b0dc3a9fd3d257c848bff1ff836b4
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   meson,
7   ninja,
8   python3,
9   pango,
10   glibmm,
11   cairomm,
12   gnome,
13   ApplicationServices,
16 stdenv.mkDerivation rec {
17   pname = "pangomm";
18   version = "2.42.2";
20   src = fetchurl {
21     url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
22     sha256 = "sha256-GyTJJiSuEnXMtXdYF10198Oa0zQtjAtLpg8NmEnS0Io=";
23   };
25   patches = [
26     # Fixes a missing include leading to build failures while compiling `attrlist.cc` (as outlined by @dslm4515 [1])
27     # Note that the files in that directory are generated and not tracked in Git [2], which is why we can't simply
28     # try to cherry-pick an upstream patch from future versions.
29     # [1]: https://github.com/dslm4515/BMLFS/issues/16#issuecomment-914624797
30     # [2]: https://github.com/GNOME/pangomm/tree/master/untracked
31     ./2.42.2-add-missing-include-attrlist.cc.patch
32   ];
34   outputs = [
35     "out"
36     "dev"
37   ];
39   nativeBuildInputs =
40     [
41       pkg-config
42       meson
43       ninja
44       python3
45     ]
46     ++ lib.optionals stdenv.hostPlatform.isDarwin [
47       ApplicationServices
48     ];
49   propagatedBuildInputs = [
50     pango
51     glibmm
52     cairomm
53   ];
55   doCheck = true;
57   passthru = {
58     updateScript = gnome.updateScript {
59       packageName = pname;
60       versionPolicy = "odd-unstable";
61       freeze = true;
62     };
63   };
65   meta = with lib; {
66     broken =
67       (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin;
68     description = "C++ interface to the Pango text rendering library";
69     homepage = "https://www.pango.org/";
70     license = with licenses; [
71       lgpl2
72       lgpl21
73     ];
74     maintainers = with maintainers; [
75       lovek323
76       raskin
77     ];
78     platforms = platforms.unix;
80     longDescription = ''
81       Pango is a library for laying out and rendering of text, with an
82       emphasis on internationalization.  Pango can be used anywhere
83       that text layout is needed, though most of the work on Pango so
84       far has been done in the context of the GTK widget toolkit.
85       Pango forms the core of text and font handling for GTK.
86     '';
87   };