opentabletdriver: 0.6.5.0 -> 0.6.5.1 (#379384)
[NixPkgs.git] / pkgs / by-name / mo / mozcdic-ut-sudachidict / package.nix
blobaa3dbaf25fb8828e0a65608052d937133c562c27
2   lib,
3   fetchFromGitHub,
4   stdenvNoCC,
5   nix-update-script,
6 }:
8 stdenvNoCC.mkDerivation {
9   pname = "mozcdic-ut-sudachidict";
10   version = "0-unstable-2024-10-12";
12   src = fetchFromGitHub {
13     owner = "utuhiro78";
14     repo = "mozcdic-ut-sudachidict";
15     rev = "a807010ef3fdc9573a83f41594e9d79b969c3f80";
16     hash = "sha256-AGs/MleR/UMtVUDfxpE9clyD1uaI3SvTGFZInOo8ms0=";
17   };
19   installPhase = ''
20     runHook preInstall
22     install -Dt $out mozcdic-ut-sudachidict.txt.tar.bz2
24     runHook postInstall
25   '';
27   passthru.updateScript = nix-update-script {
28     extraArgs = [
29       "--version"
30       "branch"
31     ];
32   };
34   meta = {
35     description = "Mozc UT SudachiDict Dictionary is a dictionary converted from SudachiDict for Mozc.";
36     homepage = "https://github.com/utuhiro78/mozcdic-ut-sudachidict";
37     license = with lib.licenses; [ asl20 ];
38     maintainers = with lib.maintainers; [ pineapplehunter ];
39     platforms = lib.platforms.all;
40     # this does not need to be separately built
41     # it only provides some zip files
42     hydraPlatforms = [ ];
43   };