Merge pull request #247789 from usertam/patch/source-sans

This commit is contained in:
Franz Pletz 2023-08-08 05:56:14 +02:00 committed by GitHub
commit 1f3ec68c14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
stdenvNoCC.mkDerivation rec {
pname = "source-sans";
version = "3.046";
version = "3.052";
src = fetchzip {
url = "https://github.com/adobe-fonts/source-sans/archive/${version}R.zip";
hash = "sha256-nBLEK+T5n1CdZK2zvCWIhF2MxPmiAwL9l55a55yHtgU=";
hash = "sha256-yzbYy/ZS1GGlgJW+ARVWF4tjFqmMq7x+YqSQnojtQBs=";
};
installPhase = ''
@ -14,7 +14,7 @@ stdenvNoCC.mkDerivation rec {
install -Dm444 OTF/*.otf -t $out/share/fonts/opentype
install -Dm444 TTF/*.ttf -t $out/share/fonts/truetype
install -Dm444 VAR/*.otf -t $out/share/fonts/variable
install -Dm444 VF/*.otf -t $out/share/fonts/variable
runHook postInstall
'';