Merge pull request #214579 from datMaffin/update-mononoki-to-1_5

This commit is contained in:
Sandro 2023-03-14 01:01:08 +01:00 committed by GitHub
commit 49e2b72425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,19 +2,19 @@
stdenvNoCC.mkDerivation rec {
pname = "mononoki";
version = "1.3";
version = "1.5";
src = fetchzip {
url = "https://github.com/madmalik/mononoki/releases/download/${version}/mononoki.zip";
stripRoot = false;
hash = "sha256-bZYBRdmbQVs4i6UzMIHwJnoLWggX4CW8ZogNFYiX/9w=";
hash = "sha256-H5Iu7nSrB5UGlCSjTM3SLu+IjaAffk9TCm5OoOleKvw=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/mononoki
cp webfont/* $out/share/fonts/mononoki
cp * $out/share/fonts/mononoki
runHook postInstall
'';