about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-01 23:59:36 +0200
committerGitHub <noreply@github.com>2024-04-01 23:59:36 +0200
commit8bb85e47ed622955f7047d755f99192aefd93a35 (patch)
tree36c39b707f67b84a52129a9bde7faac55c831b6e /pkgs/data
parent6e7dd3090607a5e1f369628a3d1aa51c91f9a5dd (diff)
parent9655bfc721e353e76876632c898eac08a03c2e56 (diff)
Merge pull request #300697 from r-ryantm/auto-update/lxgw-neoxihei
lxgw-neoxihei: 1.120.1 -> 1.120.2
Diffstat (limited to 'pkgs/data')
-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 ];
-  };
-}