depot/third_party/nixpkgs/pkgs/data/fonts/shrikhand/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
687 B
Nix

{ lib, fetchzip }:
let
version = "2016-03-03";
in fetchzip {
name = "shrikhand-${version}";
url = "https://github.com/jonpinhorn/shrikhand/raw/c11c9b0720fba977fad7cb4f339ebacdba1d1394/build/Shrikhand-Regular.ttf";
postFetch = "install -D -m644 $downloadedFile $out/share/fonts/truetype/Shrikhand-Regular.ttf";
sha256 = "0s54k9cs1g2yz6lwg5gakqb12vg5qkfdz3pc8mh7mib2s6q926hs";
meta = with lib; {
homepage = "https://jonpinhorn.github.io/shrikhand/";
description = "A vibrant and playful typeface for both Latin and Gujarati writing systems";
maintainers = with maintainers; [ sternenseemann ];
platforms = platforms.all;
license = licenses.ofl;
};
}