mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
48 lines
1.0 KiB
Nix
48 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "mozcdic-ut-edict2";
|
|
version = "0-unstable-2024-07-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "utuhiro78";
|
|
repo = "mozcdic-ut-edict2";
|
|
rev = "b2112277d0d479b9218f42772356da3601b3e8cf";
|
|
hash = "sha256-DIIp8FooWxyHMrQmq+2KUGEmYHKy+H6NtHrvRldxXqc=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dt $out mozcdic-ut-edict2.txt.tar.bz2
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version"
|
|
"branch"
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
description = "Mozc UT EDICT2 Dictionary is a dictionary converted from EDICT2 for Mozc.";
|
|
homepage = "https://github.com/utuhiro78/mozcdic-ut-sudachidict";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
cc-by-sa-40
|
|
];
|
|
maintainers = with lib.maintainers; [ pineapplehunter ];
|
|
platforms = lib.platforms.all;
|
|
# this does not need to be separately built
|
|
# it only provides some zip files
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|