mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
26 lines
741 B
Nix
26 lines
741 B
Nix
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "2.000";
|
|
in fetchzip {
|
|
name = "public-sans-${version}";
|
|
|
|
url = "https://github.com/uswds/public-sans/releases/download/v${version}/public-sans-v${version}.zip";
|
|
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts
|
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
|
'';
|
|
|
|
sha256 = "0r34h9mim5c3h48cpq2m2ixkdqhv3i594pip10pavkmskldpbha5";
|
|
|
|
meta = with lib; {
|
|
description = "A strong, neutral, principles-driven, open source typeface for text or display";
|
|
homepage = "https://public-sans.digital.gov/";
|
|
license = licenses.ofl;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|