cozette 1.21.0 -> 1.22.0 https://github.com/slavfox/Cozette/releases attrpath: cozette Checking auto update branch... No auto update branch exists Old version 1.21.0" not present in master derivation file with contents: { lib, stdenvNoCC, fetchzip }: stdenvNoCC.mkDerivation rec { pname = "cozette"; version = "1.22.0"; src = fetchzip { url = "https://github.com/slavfox/Cozette/releases/download/v.${version}/CozetteFonts-v-${builtins.replaceStrings ["."] ["-"] version}.zip"; hash = "sha256-IB+YQcIpxYumJ5ETezqQ2yVlvdh+wllJ+MkVHPWZCEg="; }; installPhase = '' runHook preInstall install -Dm644 *.ttf -t $out/share/fonts/truetype install -Dm644 *.otf -t $out/share/fonts/opentype install -Dm644 *.bdf -t $out/share/fonts/misc install -Dm644 *.otb -t $out/share/fonts/misc install -Dm644 *.woff -t $out/share/fonts/woff install -Dm644 *.woff2 -t $out/share/fonts/woff2 runHook postInstall ''; meta = with lib; { description = "A bitmap programming font optimized for coziness"; homepage = "https://github.com/slavfox/cozette"; changelog = "https://github.com/slavfox/Cozette/blob/v.${version}/CHANGELOG.md"; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ brettlyons marsam ]; }; }