summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-04-30 22:45:22 -0500
committerGitHub <noreply@github.com>2019-04-30 22:45:22 -0500
commit9d71cd052015ea4bbd7eb3e9785b6c88b32d1716 (patch)
tree4efc32869565b3604f7fd13f76bcb582257853cd
parentec7c831673572917674bafdaf12692b87ead0700 (diff)
parent8f7c7f90f7843fed975607774f797bca4b0a8fe8 (diff)
downloadnixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.tar
nixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.tar.gz
nixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.tar.bz2
nixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.tar.lz
nixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.tar.xz
nixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.tar.zst
nixpkgs-9d71cd052015ea4bbd7eb3e9785b6c88b32d1716.zip
Merge pull request #60557 from dtzWill/feature/d2coding
d2coding: init at 1.3.2 (coding font)
-rw-r--r--pkgs/data/fonts/d2coding/default.nix32
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/data/fonts/d2coding/default.nix b/pkgs/data/fonts/d2coding/default.nix
new file mode 100644
index 00000000000..abc0dba8165
--- /dev/null
+++ b/pkgs/data/fonts/d2coding/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchzip, unzip }:
+
+let
+  version = "1.3.2";
+  pname = "d2codingfont";
+
+in fetchzip rec {
+  name = "${pname}-${version}";
+  url = "https://github.com/naver/${pname}/releases/download/VER${version}/D2Coding-Ver${version}-20180524.zip";
+
+  postFetch = ''
+    mkdir -p $out/share/fonts
+    unzip -j $downloadedFile \*-all.ttc -d $out/share/fonts/truetype/
+  '';
+
+  sha256 = "1812r82530wzfki7k9cm35fy6k2lvis7j6w0w8svc784949m1wwj";
+
+  meta = with stdenv.lib; {
+    description = "Monospace font with support for Korean and latin characters";
+    longDescription = ''
+      D2Coding is a monospace font developed by a Korean IT Company called Naver.
+      Font is good for displaying both Korean characters and latin characters,
+      as sometimes these two languages could share some similar strokes.
+      Since verion 1.3, D2Coding font is officially supported by the font
+      creator, with symbols for Powerline.
+    '';
+    homepage = https://github.com/naver/d2codingfont;
+    license = licenses.ofl;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 2d3b9ea7f41..904fc2a01a7 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -15963,6 +15963,8 @@ in
 
   cooper-hewitt = callPackage ../data/fonts/cooper-hewitt { };
 
+  d2coding = callPackage ../data/fonts/d2coding { };
+
   dosis = callPackage ../data/fonts/dosis { };
 
   dosemu_fonts = callPackage ../data/fonts/dosemu-fonts { };