1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 12:02:47 +00:00
nixpkgs/pkgs/data/fonts/source-serif-pro/default.nix

28 lines
862 B
Nix
Raw Normal View History

{ 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 = ''
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
meta = with lib; {
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 ];
};
}