summary refs log tree commit diff
path: root/pkgs/development/libraries/hunspell/wrapper.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-09-18 22:39:57 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-09-18 22:39:57 +0200
commit4007e5b8070417df1c3b394c59ba440bf7fe9b5e (patch)
tree4cda423b58870dfd027c85eb0278aaf5b7184586 /pkgs/development/libraries/hunspell/wrapper.nix
parent73f59a794db4b4a4cf93a92fa5244400b73745ba (diff)
downloadnixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.tar
nixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.tar.gz
nixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.tar.bz2
nixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.tar.lz
nixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.tar.xz
nixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.tar.zst
nixpkgs-4007e5b8070417df1c3b394c59ba440bf7fe9b5e.zip
hunspellWithDicts: fix bad `meta.outputsToInstall`
https://github.com/NixOS/nixpkgs/issues/15036#issuecomment-247874297
Diffstat (limited to 'pkgs/development/libraries/hunspell/wrapper.nix')
-rw-r--r--pkgs/development/libraries/hunspell/wrapper.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/hunspell/wrapper.nix b/pkgs/development/libraries/hunspell/wrapper.nix
index 3793a14b4dc..34c3d26c55e 100644
--- a/pkgs/development/libraries/hunspell/wrapper.nix
+++ b/pkgs/development/libraries/hunspell/wrapper.nix
@@ -9,5 +9,5 @@ stdenv.mkDerivation {
   buildCommand = ''
     makeWrapper ${hunspell.bin}/bin/hunspell $out/bin/hunspell --prefix DICPATH : ${searchPath}
   '';
-  inherit (hunspell) meta;
-}
\ No newline at end of file
+  meta = removeAttrs hunspell.meta ["outputsToInstall"];
+}