nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 33 lines 741 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchFromGitHub, 5}: 6 7stdenvNoCC.mkDerivation rec { 8 pname = "cns11643-kai"; 9 version = "0-unstable-2025-01-13"; 10 11 src = fetchFromGitHub { 12 owner = "rypervenche"; 13 repo = "cns11643-fonts"; 14 rev = "refs/tags/${version}"; 15 hash = "sha256-A/4iwNvyzOYEpBzxKeq1xM/6aU6EOCATAr0lQlyckKQ="; 16 }; 17 18 installPhase = '' 19 runHook preInstall 20 21 install -Dm644 TW-Kai*.ttf -t $out/share/fonts/truetype/ 22 23 runHook postInstall 24 ''; 25 26 meta = { 27 description = "Chinese TrueType Kai font by Ministry of Education of Taiwan government"; 28 homepage = "https://www.cns11643.gov.tw/"; 29 license = lib.licenses.ofl; 30 maintainers = [ lib.maintainers.rypervenche ]; 31 platforms = lib.platforms.all; 32 }; 33}