nixpkgs/pkgs/data/fonts/wqy-microhei/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
635 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl }:
2014-02-08 14:37:40 +00:00
stdenvNoCC.mkDerivation rec {
pname = "wqy-microhei";
version = "0.2.0";
2014-02-08 14:37:40 +00:00
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
2014-02-08 14:37:40 +00:00
runHook postInstall
'';
2014-02-08 14:37:40 +00:00
meta = {
description = "A (mainly) Chinese Unicode font";
homepage = "http://wenq.org";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.pkmx ];
platforms = lib.platforms.all;
2014-02-08 14:37:40 +00:00
};
}