mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "mozcdic-ut-skk-jisyo";
|
|
version = "0-unstable-2024-07-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "utuhiro78";
|
|
repo = "mozcdic-ut-skk-jisyo";
|
|
rev = "7300f19e6a3f27334ed7af64589de8782549a13f";
|
|
hash = "sha256-LJ1rP+uyh8K3IWCgKMDYt0EwEDiQqQL+wBdQCFbZM/k=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dt $out mozcdic-ut-skk-jisyo.txt.tar.bz2
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version"
|
|
"branch"
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
description = "Mozc UT SKK-JISYO Dictionary is a dictionary converted from SKK-JISYO for Mozc.";
|
|
homepage = "https://github.com/utuhiro78/mozcdic-ut-sudachidict";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
gpl2Plus
|
|
];
|
|
maintainers = with lib.maintainers; [ pineapplehunter ];
|
|
platforms = lib.platforms.all;
|
|
# this does not need to be separately built
|
|
# it only provides some zip files
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|