nixpkgs/pkgs/data/fonts/camingo-code/default.nix

23 lines
710 B
Nix
Raw Permalink Normal View History

{ lib, fetchzip }:
2016-10-06 20:27:40 +00:00
2017-08-10 19:43:49 +00:00
let
2016-10-06 20:27:40 +00:00
version = "1.0";
2017-08-10 19:43:49 +00:00
in fetchzip rec {
name = "camingo-code-${version}";
2016-10-06 20:27:40 +00:00
url = "https://github.com/chrissimpkins/codeface/releases/download/font-collection/codeface-fonts.zip";
2017-08-10 19:43:49 +00:00
postFetch = ''
unzip $downloadedFile
install -m444 -Dt $out/share/fonts/truetype fonts/camingo-code/*.ttf
install -m444 -Dt $out/share/doc/${name} fonts/camingo-code/*.txt
2016-10-06 20:27:40 +00:00
'';
sha256 = "16iqjwwa7pnswvcc4w8nglkd0m0fz50qsz96i1kcpqip3nwwvw7y";
2016-10-06 20:27:40 +00:00
meta = with lib; {
homepage = "https://www.myfonts.com/fonts/jan-fromm/camingo-code/";
2016-10-06 20:27:40 +00:00
description = "A monospaced typeface designed for source-code editors";
platforms = platforms.all;
license = licenses.cc-by-nd-30;
};
}