summary refs log tree commit diff
path: root/pkgs/development/libraries/hunspell/wrapper.nix
blob: 88f18e6283de235a5cc6ac72b814b210d45a5229 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, lib, hunspell, makeWrapper, dicts ? [] }:
with lib;
let
  searchPath = makeSearchPath "share/hunspell" dicts;
in
stdenv.mkDerivation {
  name = (appendToName "with-dicts" hunspell).name;
  buildInputs = [ makeWrapper ];
  buildCommand = ''
    makeWrapper ${hunspell}/bin/hunspell $out/bin/hunspell --prefix DICPATH : ${searchPath}
  '';
  inherit (hunspell) meta;
}