27 lines
936 B
Nix
27 lines
936 B
Nix
# when changing this expression convert it from 'fetchzip' to 'stdenvNoCC.mkDerivation'
|
|
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "2.001";
|
|
in (fetchzip {
|
|
name = "public-sans-${version}";
|
|
|
|
url = "https://github.com/uswds/public-sans/releases/download/v${version}/public-sans-v${version}.zip";
|
|
|
|
sha256 = "sha256-Ba7D4J72GZQsGn0KINRib9BmHsAnoEsAwAOC+M3CkMU=";
|
|
|
|
meta = with lib; {
|
|
description = "A strong, neutral, principles-driven, open source typeface for text or display";
|
|
homepage = "https://public-sans.digital.gov/";
|
|
changelog = "https://github.com/uswds/public-sans/raw/v${version}/FONTLOG.txt";
|
|
license = licenses.ofl;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
platforms = platforms.all;
|
|
};
|
|
}).overrideAttrs (_: {
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts
|
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
|
'';
|
|
})
|