2021-06-14 11:50:23 +01:00
|
|
|
{ lib, stdenvNoCC, fetchFromGitHub }:
|
2015-11-18 11:04:15 +00:00
|
|
|
|
2021-06-14 11:50:23 +01:00
|
|
|
stdenvNoCC.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "google-fonts";
|
2021-06-14 11:50:23 +01:00
|
|
|
version = "unstable-2021-06-12";
|
2015-11-18 11:04:15 +00:00
|
|
|
|
2020-11-15 01:39:55 +00:00
|
|
|
outputs = [ "out" "adobeBlank" ];
|
|
|
|
|
2016-09-10 23:07:16 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fonts";
|
2021-06-14 11:50:23 +01:00
|
|
|
rev = "370c795d7e5f9b02db9a793c2779e2c8f94c6adc";
|
|
|
|
sha256 = "sha256-XKjxmupY2KuefCtKZMXWaba1TnNwdYM/P0xGXOtBGmM=";
|
2015-11-18 11:04:15 +00:00
|
|
|
};
|
|
|
|
|
2016-09-10 23:07:16 +01: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-01-19 21:57:39 +00:00
|
|
|
rm -rv ofl/cabincondensed \
|
|
|
|
ofl/signikanegative \
|
|
|
|
ofl/signikanegativesc
|
2019-07-14 22:45:44 +01:00
|
|
|
|
2016-11-14 16:35:35 +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
|
2016-09-10 23:07:16 +01:00
|
|
|
'';
|
2015-11-18 11:04:15 +00:00
|
|
|
|
2021-06-14 11:50:23 +01:00
|
|
|
dontBuild = true;
|
|
|
|
|
2015-11-18 11:04:15 +00:00
|
|
|
installPhase = ''
|
2020-11-15 01:39:55 +00:00
|
|
|
adobeBlankDest=$adobeBlank/share/fonts/truetype
|
|
|
|
install -m 444 -Dt $adobeBlankDest ofl/adobeblank/AdobeBlank-Regular.ttf
|
|
|
|
rm -r ofl/adobeblank
|
2016-07-18 12:40:47 +01:00
|
|
|
dest=$out/share/fonts/truetype
|
2018-10-29 00:29:07 +00:00
|
|
|
find . -name '*.ttf' -exec install -m 444 -Dt $dest '{}' +
|
2015-11-18 11:04:15 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://fonts.google.com";
|
2016-10-29 20:58:39 +01:00
|
|
|
description = "Font files available from Google Fonts";
|
2015-11-18 11:04:15 +00:00
|
|
|
license = with licenses; [ asl20 ofl ufl ];
|
|
|
|
platforms = platforms.all;
|
2016-07-18 12:40:47 +01:00
|
|
|
hydraPlatforms = [];
|
2016-02-10 13:59:36 +00:00
|
|
|
maintainers = with maintainers; [ manveru ];
|
2015-11-18 11:04:15 +00:00
|
|
|
};
|
|
|
|
}
|