2016-09-10 22:07:16 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-11-18 11:04:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-10 22:07:16 +00:00
|
|
|
name = "google-fonts-${version}";
|
|
|
|
version = "2016-08-30";
|
2015-11-18 11:04:15 +00:00
|
|
|
|
2016-09-10 22:07:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "fonts";
|
|
|
|
rev = "7a4070f65f2ca85ffdf2d465ff5e095005bae197";
|
|
|
|
sha256 = "0c20vcsd0jki8drrim68z2ca0cxli4wyh1i1gyg4iyac0a0v8wx3";
|
2015-11-18 11:04:15 +00:00
|
|
|
};
|
|
|
|
|
2016-09-10 22:07:16 +00:00
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = "13n2icpdp1z7i14rnfwkjdydhbjgdvyl1crd71hfy6l1j2p3kzyf";
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
2015-11-18 11:04:15 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-07-18 11:40:47 +00:00
|
|
|
dest=$out/share/fonts/truetype
|
|
|
|
mkdir -p $dest
|
|
|
|
find . -name "*.ttf" -exec cp -v {} $dest \;
|
|
|
|
chmod -x $dest/*.ttf
|
2015-11-18 11:04:15 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://www.google.com/fontsl;
|
|
|
|
description = "Font files available from Google Font";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|