summary refs log tree commit diff
path: root/pkgs/data/fonts/wqy-zenhei/default.nix
blob: 698ecc53046265d7cffa810f26bedc234d9bcdaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "wqy-zenhei-0.4.23-1";

  src = fetchurl {
    url = http://prdownloads.sourceforge.net/wqy/wqy-zenhei-0.4.23-1.tar.gz;
    sha256 = "138nn81ai240av0xvcq4ab3rl73n0qlj3gwr3a36i63ry8vdj5qm";
  };

  installPhase =
    ''
      mkdir -p $out/share/fonts
      cp *.ttf $out/share/fonts
    '';

  meta = {
    description = "A (mainly) Chinese Unicode font";
  };
}