brainix/sources/nixpkgs/pkgs/development/libraries/nuspell/wrapper.nix
2026-02-13 17:06:24 +09:00

13 lines
401 B
Nix

{ stdenv, lib, nuspell, makeWrapper, dicts ? [] }:
with lib;
let
searchPath = makeSearchPath "share/hunspell" dicts;
in
stdenv.mkDerivation {
name = (appendToName "with-dicts" nuspell).name;
buildInputs = [ makeWrapper ];
buildCommand = ''
makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath}
'';
meta = removeAttrs nuspell.meta ["outputsToInstall"];
}