summaryrefslogtreecommitdiffstats
path: root/pkgs/data
diff options
context:
space:
mode:
authorMasayuki Takeda <mtakeda.enigsol@gmail.com>2018-06-30 15:39:12 -0400
committerMasayuki Takeda <mtakeda.enigsol@gmail.com>2018-06-30 15:39:12 -0400
commit95175cff45d7b19e7f91a58f46de2421fdc22e62 (patch)
treecb73735225d58d80cfd747a77b7e35fd46d5a2c1 /pkgs/data
parent99d8edbc7dc877ddf5f6088e593b8c2e9bf33c9e (diff)
source-han-code-jp: init at 2.011R
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/source-han-code-jp/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/data/fonts/source-han-code-jp/default.nix b/pkgs/data/fonts/source-han-code-jp/default.nix
new file mode 100644
index 000000000000..fc016a457c22
--- /dev/null
+++ b/pkgs/data/fonts/source-han-code-jp/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchzip }:
+
+let
+ pname = "source-han-code-jp";
+ version = "2.011R";
+in fetchzip {
+ name = "${pname}-${version}";
+
+ url = "https://github.com/adobe-fonts/${pname}/archive/${version}.zip";
+
+ postFetch = ''
+ mkdir -p $out/share/fonts
+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
+ '';
+
+ sha256 = "184vrjkymcm29k1cx00cdvjchzqr1w17925lmh85f0frx7vwljcd";
+
+ meta = {
+ description = "A monospaced Latin font suitable for coding";
+ maintainers = with stdenv.lib.maintainers; [ mt-caret ];
+ platforms = with stdenv.lib.platforms; all;
+ homepage = https://blogs.adobe.com/CCJKType/2015/06/source-han-code-jp.html;
+ license = stdenv.lib.licenses.ofl;
+ };
+}