2016-09-11 00:07:16 +02:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-11-18 12:04:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-11 00:07:16 +02:00
|
|
|
name = "google-fonts-${version}";
|
2018-07-21 07:15:50 +02:00
|
|
|
version = "2018-07-13";
|
2015-11-18 12:04:15 +01:00
|
|
|
|
2016-09-11 00:07:16 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fonts";
|
2018-07-21 07:15:50 +02:00
|
|
|
rev = "3ca591dae7372a26e254ec6d22e7b453813b9530";
|
|
|
|
sha256 = "01ak3dzw2kihwa0dy27x8vvpiscd66mnkf61vj1xn29m4g48y0lr";
|
2015-11-18 12:04:15 +01:00
|
|
|
};
|
|
|
|
|
2016-09-11 00:07:16 +02:00
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
2018-07-21 07:15:50 +02:00
|
|
|
outputHash = "1pzm26794nwdbsvjnczpfchxiqa1n1zhp517g6g39wfm1nfszz83";
|
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.
|
|
|
|
rm -rv ofl/alefhebrew \
|
|
|
|
ofl/misssaintdelafield \
|
|
|
|
ofl/mrbedford \
|
|
|
|
ofl/siamreap \
|
|
|
|
ofl/terminaldosislight
|
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 = ''
|
2016-07-18 13:40:47 +02:00
|
|
|
dest=$out/share/fonts/truetype
|
|
|
|
mkdir -p $dest
|
|
|
|
find . -name "*.ttf" -exec cp -v {} $dest \;
|
|
|
|
chmod -x $dest/*.ttf
|
2015-11-18 12:04:15 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-29 21:58:39 +02:00
|
|
|
homepage = https://fonts.google.com;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|