mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{ stdenv, lib, fetchFromGitea, pkg-config, meson, ninja, scdoc
|
|
, freetype, fontconfig, pixman, tllist, check
|
|
# Text shaping methods to enable, empty list disables all text shaping.
|
|
# See `availableShapingTypes` or upstream meson_options.txt for available types.
|
|
, withShapingTypes ? [ "grapheme" "run" ]
|
|
, harfbuzz, utf8proc
|
|
, fcft # for passthru.tests
|
|
}:
|
|
|
|
let
|
|
# Needs to be reflect upstream meson_options.txt
|
|
availableShapingTypes = [
|
|
"grapheme"
|
|
"run"
|
|
];
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fcft";
|
|
version = "3.1.5";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "dnkl";
|
|
repo = "fcft";
|
|
rev = version;
|
|
sha256 = "sha256-3gsaXnflGiGOpIkqDQe5u6x8d18x67/dc4Hh1iU89+o=";
|
|
};
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeBuildInputs = [ pkg-config meson ninja scdoc ];
|
|
buildInputs = [ freetype fontconfig pixman tllist ]
|
|
++ lib.optionals (withShapingTypes != []) [ harfbuzz ]
|
|
++ lib.optionals (builtins.elem "run" withShapingTypes) [ utf8proc ];
|
|
nativeCheckInputs = [ check ];
|
|
|
|
mesonBuildType = "release";
|
|
mesonFlags = builtins.map (t:
|
|
lib.mesonEnable "${t}-shaping" (lib.elem t withShapingTypes)
|
|
) availableShapingTypes;
|
|
|
|
doCheck = true;
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
passthru.tests = {
|
|
noShaping = fcft.override { withShapingTypes = []; };
|
|
onlyGraphemeShaping = fcft.override { withShapingTypes = [ "grapheme" ]; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://codeberg.org/dnkl/fcft";
|
|
changelog = "https://codeberg.org/dnkl/fcft/releases/tag/${version}";
|
|
description = "Simple library for font loading and glyph rasterization";
|
|
maintainers = with maintainers; [
|
|
fionera
|
|
sternenseemann
|
|
];
|
|
license = licenses.mit;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|