summary refs log tree commit diff
path: root/pkgs/data/fonts/source-serif-pro/default.nix
blob: 86a45b80efd7bde7599899731d30ad4492c0a331 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, fetchzip }:

let
  version = "3.000";
in fetchzip {
  name = "source-serif-pro-${version}";

  url = "https://github.com/adobe-fonts/source-serif-pro/releases/download/${version}R/source-serif-pro-${version}R.zip";

  postFetch = ''
    mkdir -p $out/share/fonts/{opentype,truetype,variable}
    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
  '';

  sha256 = "06yp8y79mqk02qzp81h8zkmzqqlhicgrkwmzkd0bm338xh8grsiz";

  meta = with lib; {
    homepage = "https://adobe-fonts.github.io/source-serif-pro/";
    description = "A set of OpenType fonts to complement Source Sans Pro";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = with maintainers; [ ttuegel ];
  };
}