about summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorSerge Belov <sb@canva.com>2022-04-22 12:19:33 +1000
committerSerge Belov <sb@canva.com>2022-04-27 15:11:44 +1000
commitae4494212a4ddefae925578939b2cec7aaae1b9e (patch)
tree0fd21aecb82684e8132d8226405ca957dad9f96f /pkgs/data/fonts
parentd6b996030dd21c6509803267584b9aca3e133a07 (diff)
takao: init at 00303.01
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/takao/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/data/fonts/takao/default.nix b/pkgs/data/fonts/takao/default.nix
new file mode 100644
index 0000000000000..dcbce858e0118
--- /dev/null
+++ b/pkgs/data/fonts/takao/default.nix
@@ -0,0 +1,27 @@
+{ fetchzip, lib }:
+
+let
+  version = "00303.01";
+in
+fetchzip {
+  name = "takao-${version}";
+  url = "mirror://ubuntu/pool/universe/f/fonts-takao/fonts-takao_${version}.orig.tar.gz";
+  sha256 = "sha256-TlPq3iIv8vHlxYu5dkX/Lf6ediYKQaQ5uMbFvypQM/w=";
+
+  postFetch = ''
+    unpackDir="$TMPDIR/unpack"
+    mkdir "$unpackDir"
+    cd "$unpackDir"
+    tar xf "$downloadedFile" --strip-components=1
+    mkdir -p $out/share/fonts
+    cp *.ttf $out/share/fonts
+  '';
+
+  meta = with lib; {
+    description = "Japanese TrueType Gothic, P Gothic, Mincho, P Mincho fonts";
+    homepage = "https://launchpad.net/takao-fonts";
+    license = licenses.ipa;
+    maintainers = with lib.maintainers; [ serge ];
+    platforms = platforms.all;
+  };
+}