about summary refs log tree commit diff
path: root/pkgs/data/fonts/wqy-microhei/default.nix
blob: 7c410e7d00e7d6bab43f765298d858b75b5755f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenvNoCC, fetchurl }:

stdenvNoCC.mkDerivation rec {
  pname = "wqy-microhei";
  version = "0.2.0";

  src = fetchurl {
    url = "mirror://sourceforge/wqy/${pname}-${version}-beta.tar.gz";
    hash = "sha256-KAKsgCOqNqZupudEWFTjoHjTd///QhaTQb0jeHH3IT4=";
  };

  installPhase = ''
    runHook preInstall

    install -Dm644 wqy-microhei.ttc $out/share/fonts/wqy-microhei.ttc

    runHook postInstall
  '';

  meta = {
    description = "A (mainly) Chinese Unicode font";
    homepage = "http://wenq.org";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.pkmx ];
    platforms = lib.platforms.all;
  };
}