mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 04:34:46 +00:00
![Silvan Mosberger](/assets/img/avatar_default.png)
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
81 lines
1.9 KiB
Nix
81 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
llvmPackages,
|
|
fetchurl,
|
|
pkg-config,
|
|
freetype,
|
|
cmake,
|
|
static ? stdenv.hostPlatform.isStatic,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "1.3.14";
|
|
pname = "graphite2";
|
|
|
|
src = fetchurl {
|
|
url =
|
|
with finalAttrs;
|
|
"https://github.com/silnrsi/graphite/releases/download/${version}/${pname}-${version}.tgz";
|
|
sha256 = "1790ajyhk0ax8xxamnrk176gc9gvhadzy78qia4rd8jzm89ir7gr";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
buildInputs =
|
|
[ freetype ]
|
|
++ lib.optional (stdenv.targetPlatform.useLLVM or false) (
|
|
llvmPackages.compiler-rt.override {
|
|
doFakeLibgcc = true;
|
|
}
|
|
);
|
|
|
|
patches = lib.optionals stdenv.hostPlatform.isDarwin [ ./macosx.patch ];
|
|
postPatch = ''
|
|
# disable broken 'nametabletest' test, fails on gcc-13:
|
|
# https://github.com/silnrsi/graphite/pull/74
|
|
substituteInPlace tests/CMakeLists.txt \
|
|
--replace 'add_subdirectory(nametabletest)' '#add_subdirectory(nametabletest)'
|
|
|
|
# support cross-compilation by using target readelf binary:
|
|
substituteInPlace Graphite.cmake \
|
|
--replace 'readelf' "${stdenv.cc.targetPrefix}readelf"
|
|
'';
|
|
|
|
cmakeFlags = lib.optionals static [
|
|
"-DBUILD_SHARED_LIBS=OFF"
|
|
];
|
|
|
|
# Remove a test that fails to statically link (undefined reference to png and
|
|
# freetype symbols)
|
|
postConfigure = lib.optionalString static ''
|
|
sed -e '/freetype freetype.c/d' -i ../tests/examples/CMakeLists.txt
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = {
|
|
pkg-config = testers.hasPkgConfigModules {
|
|
package = finalAttrs.finalPackage;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Advanced font engine";
|
|
homepage = "https://graphite.sil.org/";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.raskin ];
|
|
pkgConfigModules = [ "graphite2" ];
|
|
mainProgram = "gr2fonttest";
|
|
platforms = platforms.unix ++ platforms.windows;
|
|
};
|
|
})
|