mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Add wqy-microhei font
This commit is contained in:
parent
c7b781ca12
commit
023f30f07d
20
pkgs/data/fonts/wqy-microhei/default.nix
Normal file
20
pkgs/data/fonts/wqy-microhei/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wqy-microhei-0.2.0-beta";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/wqy/${name}.tar.gz";
|
||||
sha256 = "0gi1yxqph8xx869ichpzzxvx6y50wda5hi77lrpacdma4f0aq0i8";
|
||||
};
|
||||
|
||||
installPhase =
|
||||
''
|
||||
install -Dm644 wqy-microhei.ttc $out/share/fonts
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A (mainly) Chinese Unicode font";
|
||||
};
|
||||
}
|
||||
|
@ -7344,6 +7344,8 @@ let
|
||||
|
||||
vistafonts = callPackage ../data/fonts/vista-fonts { };
|
||||
|
||||
wqy_microhei = callPackage ../data/fonts/wqy-microhei { };
|
||||
|
||||
wqy_zenhei = callPackage ../data/fonts/wqy-zenhei { };
|
||||
|
||||
xhtml1 = callPackage ../data/sgml+xml/schemas/xml-dtd/xhtml1 { };
|
||||
|
Loading…
Reference in New Issue
Block a user