nixpkgs/pkgs/development/libraries/nuspell/wrapper.nix

14 lines
407 B
Nix
Raw Normal View History

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