1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
8 url = "https://github.com/slavfox/Cozette/releases/download/v.${version}/CozetteFonts-v-${builtins.replaceStrings ["."] ["-"] version}.zip";
9 hash = "sha256-LtZHbsma9EuegS349gQo4W+ZT8x+Vb3CD/5vRKjwkzc=";
15 install -Dm644 *.ttf -t $out/share/fonts/truetype
16 install -Dm644 *.otf -t $out/share/fonts/opentype
17 install -Dm644 *.bdf -t $out/share/fonts/misc
18 install -Dm644 *.otb -t $out/share/fonts/misc
19 install -Dm644 *.woff -t $out/share/fonts/woff
20 install -Dm644 *.woff2 -t $out/share/fonts/woff2
26 description = "Bitmap programming font optimized for coziness";
27 homepage = "https://github.com/slavfox/cozette";
28 changelog = "https://github.com/slavfox/Cozette/blob/v.${version}/CHANGELOG.md";
29 license = licenses.mit;
30 platforms = platforms.all;
31 maintainers = with maintainers; [ brettlyons ];