about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/nuspell/wrapper.nix
blob: b3a929545f24fa27e46a2031be2b0331e32a0efe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, lib, nuspell, makeWrapper, dicts ? [] }:

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