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

23 lines
555 B
Nix

{ lib, fetchzip }:
fetchzip rec {
name = "wqy-microhei-0.2.0-beta";
url = "mirror://sourceforge/wqy/${name}.tar.gz";
postFetch = ''
tar -xzf $downloadedFile --strip-components=1
install -Dm644 wqy-microhei.ttc $out/share/fonts/wqy-microhei.ttc
'';
sha256 = "0i5jh7mkp371fxqmsvn7say075r641yl4hq26isjyrqvb8cv92a9";
meta = {
description = "A (mainly) Chinese Unicode font";
homepage = "http://wenq.org";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.pkmx ];
platforms = lib.platforms.all;
};
}