nixos/fileSystems: link to mount(8) from fileSystems.*.options (#377170)
[NixPkgs.git] / pkgs / by-name / mo / mozcdic-ut-personal-names / package.nix
blobfe3c0c1ec08f883202c35c05f1cc41e5899db2ca
2   lib,
3   fetchFromGitHub,
4   stdenvNoCC,
5   nix-update-script,
6 }:
8 stdenvNoCC.mkDerivation {
9   pname = "mozcdic-ut-personal-names";
10   version = "0-unstable-2024-10-14";
12   src = fetchFromGitHub {
13     owner = "utuhiro78";
14     repo = "mozcdic-ut-personal-names";
15     rev = "24d783e5b1fe57af571e000861cfc70da173aedb";
16     hash = "sha256-ezx4Am1xuP9SNNBsNC3KwpWghypRU97MCw10/P2LlnY=";
17   };
19   installPhase = ''
20     runHook preInstall
22     install -Dt $out mozcdic-ut-personal-names.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 Personal Name Dictionary is a dictionary for Mozc.";
36     homepage = "https://github.com/utuhiro78/mozcdic-ut-personal-names";
37     license = 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   };