nixpkgs/pkgs/data/fonts/cozette/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2020-02-24 19:08:57 +01:00
stdenvNoCC.mkDerivation rec {
pname = "cozette";
2024-01-12 21:35:27 +01:00
version = "1.23.2";
2020-02-24 19:08:57 +01:00
src = fetchzip {
url = "https://github.com/slavfox/Cozette/releases/download/v.${version}/CozetteFonts-v-${builtins.replaceStrings ["."] ["-"] version}.zip";
2024-01-12 21:35:27 +01:00
hash = "sha256-v1UWrVx1PnNPiFtMMy4kOkIe//iHxx0LOA4nHo95Zws=";
};
installPhase = ''
runHook preInstall
2020-02-24 19:08:57 +01:00
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
'';
2020-02-24 19:08:57 +01:00
2020-07-02 11:20:00 +02:00
meta = with lib; {
description = "A bitmap programming font optimized for coziness";
2020-02-24 19:08:57 +01:00
homepage = "https://github.com/slavfox/cozette";
changelog = "https://github.com/slavfox/Cozette/blob/v.${version}/CHANGELOG.md";
2020-02-24 19:08:57 +01:00
license = licenses.mit;
platforms = platforms.all;
2020-07-02 11:20:00 +02:00
maintainers = with maintainers; [ brettlyons marsam ];
2020-02-24 19:08:57 +01:00
};
}