mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
28 lines
633 B
Nix
28 lines
633 B
Nix
{ 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 = "(mainly) Chinese Unicode font";
|
|
homepage = "http://wenq.org";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.pkmx ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|