biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / data / misc / unihan-database / default.nix
blob362507fc5cbaf91029865899e4bae334580e5db4
1 { lib, stdenv
2 , fetchurl
3 , unzip
4 }:
6 stdenv.mkDerivation rec {
7   pname = "unihan-database";
8   version = "15.1.0";
10   src = fetchurl {
11     url = "https://www.unicode.org/Public/zipped/${version}/Unihan.zip";
12     hash = "sha256-oCJmEOMkvPeErDgOEfTL9TPuHms9AosJkb+MDcP4WFM=";
13   };
15   nativeBuildInputs = [
16     unzip
17   ];
19   sourceRoot = ".";
21   installPhase = ''
22     runHook preInstall
24     mkdir -p $out/share/unicode
25     cp -r * $out/share/unicode
27     runHook postInstall
28   '';
30   meta = with lib; {
31     description = "Unicode Han Database";
32     homepage = "https://www.unicode.org/";
33     license = licenses.unicode-dfs-2016;
34     platforms = platforms.all;
35   };