aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/source-han-code-jp/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/source-han-code-jp/default.nix b/pkgs/source-han-code-jp/default.nix
deleted file mode 100644
index de1ff52..0000000
--- a/pkgs/source-han-code-jp/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- lib,
- stdenv,
- fetchurl,
-}:
-
-stdenv.mkDerivation rec {
- pname = "source-han-code-jp";
- version = "2.012R";
-
- src = fetchurl {
- url = "https://github.com/adobe-fonts/source-han-code-jp/releases/download/${version}/SourceHanCodeJP.ttc";
- sha256 = "sha256-9DCTixBW55/2DPQih247u9NI9XjTj/ZDB04taZLNlfU=";
- };
-
- dontUnpack = true;
-
- installPhase = ''
- mkdir -p $out/share/fonts
- cp $src $out/share/fonts/SourceHanCodeJP.ttc
- '';
-
- meta = with lib; {
- description = "A derivative of Source Han Sans for coding";
- homepage = "https://github.com/adobe-fonts/source-han-code-jp";
- license = licenses.ofl;
- };
-}