mozcdic-ut-neologd: init at 0-unstable-2024-07-28
This commit is contained in:
parent
6d471318dd
commit
57f2fc9888
44
pkgs/by-name/mo/mozcdic-ut-neologd/package.nix
Normal file
44
pkgs/by-name/mo/mozcdic-ut-neologd/package.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
stdenvNoCC,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "mozcdic-ut-neologd";
|
||||
version = "0-unstable-2024-07-28";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "utuhiro78";
|
||||
repo = "mozcdic-ut-neologd";
|
||||
rev = "b7035b88db25ad1a933f05a33f193711c6c3b2db";
|
||||
hash = "sha256-JPTrWaDtdNs/Z0uLRwaS8Qc/l4/Y7NtwLanivyefXnk=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dt $out mozcdic-ut-neologd.txt.tar.bz2
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru.updateScript = nix-update-script {
|
||||
extraArgs = [
|
||||
"--version"
|
||||
"branch"
|
||||
];
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Mozc UT NEologd Dictionary is a dictionary converted from mecab-ipadic-NEologd for Mozc.";
|
||||
homepage = "https://github.com/utuhiro78/mozcdic-ut-neologd";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
maintainers = with lib.maintainers; [ pineapplehunter ];
|
||||
platforms = lib.platforms.all;
|
||||
# this does not need to be separately built
|
||||
# it only provides some zip files
|
||||
hydraPlatforms = [ ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user