1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

hunspellWithDicts: fix bad meta.outputsToInstall

https://github.com/NixOS/nixpkgs/issues/15036#issuecomment-247874297
This commit is contained in:
Vladimír Čunát 2016-09-18 22:39:57 +02:00
parent 73f59a794d
commit 4007e5b807

View file

@ -9,5 +9,5 @@ stdenv.mkDerivation {
buildCommand = ''
makeWrapper ${hunspell.bin}/bin/hunspell $out/bin/hunspell --prefix DICPATH : ${searchPath}
'';
inherit (hunspell) meta;
meta = removeAttrs hunspell.meta ["outputsToInstall"];
}