2016-09-10 22:07:16 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-11-18 11:04:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "google-fonts";
|
2019-07-14 21:45:44 +00:00
|
|
|
version = "2019-07-14";
|
2015-11-18 11:04:15 +00:00
|
|
|
|
2016-09-10 22:07:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fonts";
|
2019-07-14 21:45:44 +00:00
|
|
|
rev = "f113126dc4b9b1473d9354a86129c9d7b837aa1a";
|
|
|
|
sha256 = "0safw5prpa63mqcyfw3gr3a535w4c9hg5ayw5pkppiwil7n3pyxs";
|
2015-11-18 11:04:15 +00:00
|
|
|
};
|
|
|
|
|
2016-09-10 22:07:16 +00: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.
|
|
|
|
rm -rv ofl/alefhebrew \
|
|
|
|
ofl/misssaintdelafield \
|
|
|
|
ofl/mrbedford \
|
|
|
|
ofl/siamreap \
|
|
|
|
ofl/terminaldosislight
|
2016-11-14 16:35:35 +00:00
|
|
|
|
2019-07-14 21:45:44 +00:00
|
|
|
# See comment above, the structure of these is a bit odd
|
|
|
|
# We keep the ofl/<font>/static/ variants
|
|
|
|
rm -rv ofl/comfortaa/*.ttf \
|
|
|
|
ofl/mavenpro/*.ttf \
|
|
|
|
ofl/muli/*.ttf \
|
|
|
|
ofl/oswald/*.ttf
|
|
|
|
|
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 22:07:16 +00:00
|
|
|
'';
|
2015-11-18 11:04:15 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-07-18 11:40:47 +00: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
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-29 19:58:39 +00:00
|
|
|
homepage = https://fonts.google.com;
|
|
|
|
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 11:40:47 +00:00
|
|
|
hydraPlatforms = [];
|
2016-02-10 13:59:36 +00:00
|
|
|
maintainers = with maintainers; [ manveru ];
|
2015-11-18 11:04:15 +00:00
|
|
|
};
|
|
|
|
}
|