spellchecker-cli: init at 7.0.3 (#522048)

This commit is contained in:
Oleksii Filonenko
2026-06-29 11:29:57 +00:00
committed by GitHub
2 changed files with 55 additions and 0 deletions
+6
View File
@@ -29936,6 +29936,12 @@
name = "Edward";
keys = [ { fingerprint = "0BC2F3C6AE5D73DAE870CB0E8AE4DE0EFB6CC443"; } ];
};
WiredMic = {
name = "Rasmus Enevoldsen";
github = "WiredMic";
githubId = 111731519;
email = "rasmus@enev.dk";
};
wirew0rm = {
email = "alex@wirew0rm.de";
github = "wirew0rm";
@@ -0,0 +1,49 @@
{
stdenv,
lib,
fetchFromGitHub,
fetchYarnDeps,
yarnConfigHook,
yarnBuildHook,
yarnInstallHook,
nodejs,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "spellchecker-cli";
version = "7.0.3";
strictDeps = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "tbroadley";
repo = "spellchecker-cli";
tag = "v${finalAttrs.version}";
hash = "sha256-4rKUxXsZKsRDhMV0HL39yQyVNI0negCg97KsI+77oI4=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = finalAttrs.src + "/yarn.lock";
hash = "sha256-GWIjk8eV2yYwsAfe7IY2mjO/dk9mb4vXEOvp68y4eMk=";
};
nativeBuildInputs = [
yarnConfigHook
yarnBuildHook
yarnInstallHook
nodejs
];
yarnBuildScript = "prepack";
passthru.updateScript = nix-update-script { };
meta = {
description = "A command-line tool for spellchecking files";
homepage = "https://www.npmjs.com/package/spellchecker-cli";
mainProgram = "spellchecker";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ WiredMic ];
};
})