linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / nuspell / wrapper.nix
blobab09931579c78811e9e577930788caefa37f1e69
1 { stdenv, lib, nuspell, makeWrapper, dicts ? [] }:
2 with lib;
3 let
4   searchPath = makeSearchPath "share/hunspell" dicts;
5 in
6 stdenv.mkDerivation {
7   name = (appendToName "with-dicts" nuspell).name;
8   nativeBuildInputs = [ makeWrapper ];
9   buildCommand = ''
10     makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath}
11   '';
12   meta = removeAttrs nuspell.meta ["outputsToInstall"];