python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / fcft / default.nix
blobecc99092a905d42deb8c23bd15fd31d3efcc3ad9
1 { stdenv, lib, fetchFromGitea, pkg-config, meson, ninja, scdoc
2 , freetype, fontconfig, pixman, tllist, check
3 # Text shaping methods to enable, empty list disables all text shaping.
4 # See `availableShapingTypes` or upstream meson_options.txt for available types.
5 , withShapingTypes ? [ "grapheme" "run" ]
6 , harfbuzz, utf8proc
7 , fcft # for passthru.tests
8 }:
10 let
11   # Needs to be reflect upstream meson_options.txt
12   availableShapingTypes = [
13     "grapheme"
14     "run"
15   ];
17   # Courtesy of sternenseemann and FRidh, commit c9a7fdfcfb420be8e0179214d0d91a34f5974c54
18   mesonFeatureFlag = opt: b: "-D${opt}=${if b then "enabled" else "disabled"}";
21 stdenv.mkDerivation rec {
22   pname = "fcft";
23   version = "3.1.5";
25   src = fetchFromGitea {
26     domain = "codeberg.org";
27     owner = "dnkl";
28     repo = "fcft";
29     rev = version;
30     sha256 = "sha256-3gsaXnflGiGOpIkqDQe5u6x8d18x67/dc4Hh1iU89+o=";
31   };
33   depsBuildBuild = [ pkg-config ];
34   nativeBuildInputs = [ pkg-config meson ninja scdoc ];
35   buildInputs = [ freetype fontconfig pixman tllist ]
36     ++ lib.optionals (withShapingTypes != []) [ harfbuzz ]
37     ++ lib.optionals (builtins.elem "run" withShapingTypes) [ utf8proc ];
38   checkInputs = [ check ];
40   mesonBuildType = "release";
41   mesonFlags = builtins.map (t:
42     mesonFeatureFlag "${t}-shaping" (lib.elem t withShapingTypes)
43   ) availableShapingTypes;
45   doCheck = true;
47   outputs = [ "out" "doc" "man" ];
49   passthru.tests = {
50     noShaping = fcft.override { withShapingTypes = []; };
51     onlyGraphemeShaping = fcft.override { withShapingTypes = [ "grapheme" ]; };
52   };
54   meta = with lib; {
55     homepage = "https://codeberg.org/dnkl/fcft";
56     changelog = "https://codeberg.org/dnkl/fcft/releases/tag/${version}";
57     description = "Simple library for font loading and glyph rasterization";
58     maintainers = with maintainers; [
59       fionera
60       sternenseemann
61     ];
62     license = licenses.mit;
63     platforms = with platforms; linux;
64   };