2021-06-28 23:13:55 +00:00
|
|
|
{ lib, stdenvNoCC, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
stdenvNoCC.mkDerivation {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "google-fonts";
|
2022-03-10 19:12:11 +00:00
|
|
|
version = "unstable-2022-02-26";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-24 20:58:05 +00:00
|
|
|
outputs = [ "out" "adobeBlank" ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fonts";
|
2022-03-10 19:12:11 +00:00
|
|
|
rev = "2fba0d68602b7eb3374d030c1c34939de56023f9";
|
|
|
|
sha256 = "sha256-IFkKwRRyZeOXD8/9n8UDrruUKK6oQK4BD9wYN2dmSAc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
# These directories need to be removed because they contain
|
|
|
|
# older or duplicate versions of fonts also present in other
|
|
|
|
# directories. This causes non-determinism in the install since
|
|
|
|
# the installation order of font files with the same name is not
|
|
|
|
# fixed.
|
2021-02-05 17:12:51 +00:00
|
|
|
rm -rv ofl/cabincondensed \
|
|
|
|
ofl/signikanegative \
|
|
|
|
ofl/signikanegativesc
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
if find . -name "*.ttf" | sed 's|.*/||' | sort | uniq -c | sort -n | grep -v '^.*1 '; then
|
|
|
|
echo "error: duplicate font names"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
dontBuild = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
installPhase = ''
|
2020-11-24 20:58:05 +00:00
|
|
|
adobeBlankDest=$adobeBlank/share/fonts/truetype
|
|
|
|
install -m 444 -Dt $adobeBlankDest ofl/adobeblank/AdobeBlank-Regular.ttf
|
|
|
|
rm -r ofl/adobeblank
|
2020-04-24 23:36:52 +00:00
|
|
|
dest=$out/share/fonts/truetype
|
|
|
|
find . -name '*.ttf' -exec install -m 444 -Dt $dest '{}' +
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://fonts.google.com";
|
|
|
|
description = "Font files available from Google Fonts";
|
|
|
|
license = with licenses; [ asl20 ofl ufl ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
hydraPlatforms = [];
|
|
|
|
maintainers = with maintainers; [ manveru ];
|
|
|
|
};
|
|
|
|
}
|