2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2014-05-26 20:58:31 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
let
|
2019-09-06 23:04:01 +01:00
|
|
|
version = "3.000";
|
2017-08-10 20:43:49 +01:00
|
|
|
in fetchzip {
|
|
|
|
name = "source-serif-pro-${version}";
|
2014-05-26 20:58:31 +01:00
|
|
|
|
2019-09-06 23:04:01 +01:00
|
|
|
url = "https://github.com/adobe-fonts/source-serif-pro/releases/download/${version}R/source-serif-pro-${version}R.zip";
|
2014-05-26 20:58:31 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
postFetch = ''
|
2019-01-13 23:01:06 +00:00
|
|
|
mkdir -p $out/share/fonts/{opentype,truetype,variable}
|
2019-09-06 23:04:01 +01:00
|
|
|
unzip -j $downloadedFile "OTF/*.otf" -d $out/share/fonts/opentype
|
|
|
|
unzip -j $downloadedFile "TTF/*.ttf" -d $out/share/fonts/truetype
|
|
|
|
unzip -j $downloadedFile "VAR/*.otf" -d $out/share/fonts/variable
|
2014-05-26 20:58:31 +01:00
|
|
|
'';
|
|
|
|
|
2019-09-06 23:04:01 +01:00
|
|
|
sha256 = "06yp8y79mqk02qzp81h8zkmzqqlhicgrkwmzkd0bm338xh8grsiz";
|
2017-08-10 20:43:49 +01:00
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://adobe-fonts.github.io/source-serif-pro/";
|
2014-05-26 20:58:31 +01:00
|
|
|
description = "A set of OpenType fonts to complement Source Sans Pro";
|
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|