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

29 lines
833 B
Nix
Raw Normal View History

2020-07-02 09:20:00 +00:00
{ lib, fetchzip }:
2020-02-24 18:08:57 +00:00
let
2020-07-02 09:20:00 +00:00
version = "1.8.3";
in
fetchzip rec {
name = "Cozette-${version}";
2020-02-24 18:08:57 +00:00
2020-07-02 09:20:00 +00:00
url = "https://github.com/slavfox/Cozette/releases/download/v.${version}/CozetteFonts.zip";
2020-02-24 18:08:57 +00:00
2020-07-02 09:20:00 +00:00
sha256 = "1nc4zk6n7cbv9vwlhpm3ady5lc4d4ic1klyywwfg27w8j0jv57hx";
2020-02-24 18:08:57 +00:00
2020-07-02 09:20:00 +00:00
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.bdf -d $out/share/fonts/misc
unzip -j $downloadedFile \*.otb -d $out/share/fonts/misc
2020-02-24 18:08:57 +00:00
'';
2020-07-02 09:20:00 +00:00
meta = with lib; {
description = "A bitmap programming font optimized for coziness";
2020-02-24 18:08:57 +00:00
homepage = "https://github.com/slavfox/cozette";
license = licenses.mit;
platforms = platforms.all;
2020-07-02 09:20:00 +00:00
maintainers = with maintainers; [ brettlyons marsam ];
2020-02-24 18:08:57 +00:00
};
}