mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
31 lines
726 B
Nix
31 lines
726 B
Nix
{ stdenvNoCC
|
|
, fetchurl
|
|
, lib
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "lxgw-wenkai-tc";
|
|
version = "1.330";
|
|
src = fetchurl {
|
|
url = "https://github.com/lxgw/LxgwWenKaiTC/releases/download/v${version}/${pname}-v${version}.tar.gz";
|
|
hash = "sha256-qpX5shH1HbGMa287u/R1rMFgQeAUC0wwKFVD+QSTyho=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
mv *.ttf $out/share/fonts/truetype
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lxgw/LxgwWenKaiTC";
|
|
description = "Traditional Chinese Edition of LXGW WenKai";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ lebensterben ];
|
|
};
|
|
}
|