1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/data/fonts/comfortaa/default.nix

24 lines
787 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-08-10 20:43:49 +01:00
let
2018-11-02 22:38:37 +00:00
version = "3.001";
2017-08-10 20:43:49 +01:00
in fetchzip rec {
name = "comfortaa-${version}";
2018-11-02 22:38:37 +00:00
url = "https://orig00.deviantart.net/40a3/f/2017/093/d/4/comfortaa___font_by_aajohan-d1qr019.zip";
2017-08-10 20:43:49 +01:00
postFetch = ''
mkdir -p $out/share/fonts $out/share/doc
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
unzip -j $downloadedFile \*/FONTLOG.txt \*/donate.html -d $out/share/doc/${name}
'';
2018-11-02 22:38:37 +00:00
sha256 = "0z7xr0cnn6ghwivrm5b5awq9bzhnay3y99qq6dkdgfkfdsaz0n9h";
meta = with lib; {
homepage = "http://aajohan.deviantart.com/art/Comfortaa-font-105395949";
description = "A clean and modern font suitable for headings and logos";
license = licenses.ofl;
platforms = platforms.all;
maintainers = [maintainers.rycee];
};
}