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 19:48:04 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-01 19:48:04 +0200
commit9655bfc721e353e76876632c898eac08a03c2e56 (patch)
treeed3265f5e9bdd48ef81e9cb8ad47cb978a852e59 /pkgs/data
parent699b06c3da2840677ea8e8035c2a5ec5c74d4968 (diff)
lxgw-neoxihei: move to pkgs/by-name
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 aa8df5a625479..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.2";
-
-  src = fetchurl {
-    url = "https://github.com/lxgw/LxgwNeoXiHei/releases/download/v${version}/LXGWNeoXiHei.ttf";
-    hash = "sha256-RN0OmNS3aSRMK19nNiqXYJ4PIAQh6u5W/+L8DCeqMcE=";
-  };
-
-  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 ];
-  };
-}