nixpkgs/pkgs/data/fonts/source-sans/default.nix
2023-08-08 02:28:37 +08:00

29 lines
802 B
Nix

{ lib, stdenvNoCC, fetchzip }:
stdenvNoCC.mkDerivation rec {
pname = "source-sans";
version = "3.052";
src = fetchzip {
url = "https://github.com/adobe-fonts/source-sans/archive/${version}R.zip";
hash = "sha256-yzbYy/ZS1GGlgJW+ARVWF4tjFqmMq7x+YqSQnojtQBs=";
};
installPhase = ''
runHook preInstall
install -Dm444 OTF/*.otf -t $out/share/fonts/opentype
install -Dm444 TTF/*.ttf -t $out/share/fonts/truetype
install -Dm444 VF/*.otf -t $out/share/fonts/variable
runHook postInstall
'';
meta = with lib; {
homepage = "https://adobe-fonts.github.io/source-sans/";
description = "Sans serif font family for user interface environments";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ ttuegel ];
};
}