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