about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAverell Dalton <averell+nixpkgs@rxd4.com>2019-08-15 11:04:25 +0200
committerAverell Dalton <averell+nixpkgs@rxd4.com>2019-08-15 11:04:25 +0200
commit5f10ab637753a9602d720a666f286c2f1cf6e5a5 (patch)
tree77ac4fce204abb304b9c459bc72bef8b04603886 /pkgs
parent08749c48604061a2b37ff246c2b0ee090da51440 (diff)
downloadnixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.tar
nixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.tar.gz
nixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.tar.bz2
nixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.tar.lz
nixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.tar.xz
nixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.tar.zst
nixlib-5f10ab637753a9602d720a666f286c2f1cf6e5a5.zip
rstudio: fix build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/rstudio/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix
index 27c956dcd14e..f90e17a6065b 100644
--- a/pkgs/applications/editors/rstudio/default.nix
+++ b/pkgs/applications/editors/rstudio/default.nix
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
     sha256 = "19x000m3jwnkqgi6ic81lkzyjvvxcfacw2j0vcfcaknvvagzhyhb";
   };
 
-  hunspellDictionaries = with stdenv.lib; filter isDerivation (attrValues hunspellDicts);
+  hunspellDictionaries = with stdenv.lib; filter isDerivation (unique (attrValues hunspellDicts));
 
   mathJaxSrc = fetchurl {
     url = https://s3.amazonaws.com/rstudio-buildtools/mathjax-26.zip;