source-sans: 3.046 -> 3.052

This commit is contained in:
usertam 2023-08-08 02:28:37 +08:00
parent f7985a0c98
commit 5e96dfeac2
No known key found for this signature in database
GPG Key ID: C35F5FF3A6C5AC43

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
'';