about summary refs log tree commit diff
path: root/pkgs/data/fonts/lxgw-neoxihei/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/fonts/lxgw-neoxihei/default.nix')
-rw-r--r--pkgs/data/fonts/lxgw-neoxihei/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/data/fonts/lxgw-neoxihei/default.nix b/pkgs/data/fonts/lxgw-neoxihei/default.nix
deleted file mode 100644
index 3832ba8d510b6..0000000000000
--- a/pkgs/data/fonts/lxgw-neoxihei/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib
-, fetchurl
-, stdenvNoCC
-}:
-
-stdenvNoCC.mkDerivation rec {
-  pname = "lxgw-neoxihei";
-  version = "1.120.1";
-
-  src = fetchurl {
-    url = "https://github.com/lxgw/LxgwNeoXiHei/releases/download/v${version}/LXGWNeoXiHei.ttf";
-    hash = "sha256-shzJ5y2mjvodtSHct9gm+09CludxUpR38qi9zvewjaQ=";
-  };
-
-  dontUnpack = true;
-
-  installPhase = ''
-    runHook preInstall
-
-    install -Dm644 $src $out/share/fonts/truetype/LXGWNeoXiHei.ttf
-
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    description = "A Simplified Chinese sans-serif font derived from IPAex Gothic";
-    homepage = "https://github.com/lxgw/LxgwNeoXiHei";
-    license = licenses.ipa;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ zendo ];
-  };
-}