nixpkgs/pkgs/data/fonts/wqy-microhei/default.nix
volth c9eb44eab3 data/fonts: cleanup
* make font derivations fixed-output where applicable
 * fix dead links
 * `stdenv.lib` -> `lib` where `stdenv` is not involved
 * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
2019-05-13 06:03:31 +00:00

24 lines
553 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;
};
}