2014-02-08 14:37:40 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "wqy-microhei-0.2.0-beta";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wqy/${name}.tar.gz";
|
|
|
|
sha256 = "0gi1yxqph8xx869ichpzzxvx6y50wda5hi77lrpacdma4f0aq0i8";
|
|
|
|
};
|
|
|
|
|
2014-02-12 03:27:02 +00:00
|
|
|
installPhase = ''install -Dm644 wqy-microhei.ttc $out/share/fonts/wqy-microhei.ttc'';
|
2014-02-08 14:37:40 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A (mainly) Chinese Unicode font";
|
2014-09-13 11:51:39 +00:00
|
|
|
homepage = http://wenq.org;
|
2014-02-12 19:38:21 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2014-09-13 11:51:39 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.pkmx ];
|
2014-02-12 19:38:21 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2014-02-08 14:37:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|