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

cnstrokeorder: init at 0.0.4.7

+28
+26
pkgs/data/fonts/cnstrokeorder/default.nix
··· 1 + { lib, fetchurl }: 2 + 3 + let 4 + version = "0.0.4.7"; 5 + in fetchurl { 6 + name = "cnstrokeorder-${version}"; 7 + 8 + url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf"; 9 + 10 + recursiveHash = true; 11 + downloadToTemp = true; 12 + 13 + postFetch = '' 14 + install -D $downloadedFile $out/share/fonts/truetype/CNstrokeorder-${version}.ttf 15 + ''; 16 + 17 + sha256 = "0cizgfdgbq9av5c8234mysr2q54iw9pkxrmq5ga8gv32hxhl5bx4"; 18 + 19 + meta = with lib; { 20 + description = "Chinese font that shows stroke order for HSK 1-4"; 21 + homepage = "http://rtega.be/chmn/index.php?subpage=68"; 22 + license = [ licenses.arphicpl ]; 23 + maintainers = with maintainers; [ johnazoidberg ]; 24 + platforms = platforms.all; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 16022 16022 16023 16023 cherry = callPackage ../data/fonts/cherry { }; 16024 16024 16025 + cnstrokeorder = callPackage ../data/fonts/cnstrokeorder {}; 16026 + 16025 16027 comfortaa = callPackage ../data/fonts/comfortaa {}; 16026 16028 16027 16029 comic-neue = callPackage ../data/fonts/comic-neue { };