summary refs log tree commit diff
path: root/pkgs/applications/editors/rstudio
diff options
context:
space:
mode:
authormingchuan <ming@culpring.com>2017-11-10 07:00:47 +0800
committermingchuan <ming@culpring.com>2017-11-10 07:00:47 +0800
commit00e1a223486ac7f3b613e69a0344531e19a9ce96 (patch)
treea0ac0df486cda671c42d25bde6b034fe36c5f579 /pkgs/applications/editors/rstudio
parent3b7162839cd37d55e74430043d64e491f3c4c4bc (diff)
downloadnixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.tar
nixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.tar.gz
nixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.tar.bz2
nixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.tar.lz
nixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.tar.xz
nixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.tar.zst
nixlib-00e1a223486ac7f3b613e69a0344531e19a9ce96.zip
rstudio: fix build
Diffstat (limited to 'pkgs/applications/editors/rstudio')
-rw-r--r--pkgs/applications/editors/rstudio/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix
index a5049e4236b3..b508521790bf 100644
--- a/pkgs/applications/editors/rstudio/default.nix
+++ b/pkgs/applications/editors/rstudio/default.nix
@@ -1,5 +1,6 @@
-{ stdenv, fetchurl, fetchpatch, makeDesktopItem, cmake, boost, zlib, openssl,
-R, qt5, libuuid, hunspellDicts, unzip, ant, jdk, gnumake, makeWrapper, pandoc
+{ stdenv, fetchurl, fetchpatch, makeDesktopItem, cmake, boost, zlib, openssl
+, R, qtbase, qtwebkit, qtwebchannel, libuuid, hunspellDicts, unzip, ant, jdk
+, gnumake, makeWrapper, pandoc
 }:
 
 let
@@ -12,7 +13,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake unzip ant jdk makeWrapper pandoc ];
 
-  buildInputs = [ boost zlib openssl R qt5.full qt5.qtwebkit qt5.qtwebchannel libuuid ];
+  buildInputs = [ boost zlib openssl R qtbase qtwebkit qtwebchannel libuuid ];
 
   src = fetchurl {
     url = "https://github.com/rstudio/rstudio/archive/v${version}.tar.gz";