about summary refs log tree commit diff
path: root/pkgs/applications/editors/rstudio
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-09-17 07:08:28 +0300
committerNikolay Amiantov <ab@fmap.me>2017-10-17 03:40:11 +0300
commitb1736511cedee31dbc76bf48da1de9904d4825b7 (patch)
tree7acee672534d7cfdc712a83e6a99078557ae6cd9 /pkgs/applications/editors/rstudio
parentc6c67c46bf7dacfc4f5beb8584f1ce30630c4f75 (diff)
downloadnixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.tar
nixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.tar.gz
nixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.tar.bz2
nixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.tar.lz
nixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.tar.xz
nixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.tar.zst
nixlib-b1736511cedee31dbc76bf48da1de9904d4825b7.zip
boost: make 1.65 the default
Diffstat (limited to 'pkgs/applications/editors/rstudio')
-rw-r--r--pkgs/applications/editors/rstudio/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix
index bf8374fdaaa1..80f020b6c503 100644
--- a/pkgs/applications/editors/rstudio/default.nix
+++ b/pkgs/applications/editors/rstudio/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, makeDesktopItem, cmake, boost163, zlib, openssl,
+{ stdenv, fetchurl, fetchpatch, makeDesktopItem, cmake, boost, zlib, openssl,
 R, qt5, libuuid, hunspellDicts, unzip, ant, jdk, gnumake, makeWrapper, pandoc
 }:
 
@@ -10,7 +10,7 @@ in
 stdenv.mkDerivation rec {
   name = "RStudio-${version}";
 
-  buildInputs = [ cmake boost163 zlib openssl R qt5.full qt5.qtwebkit qt5.qtwebchannel libuuid unzip ant jdk makeWrapper pandoc ];
+  buildInputs = [ cmake boost zlib openssl R qt5.full qt5.qtwebkit qt5.qtwebchannel libuuid unzip ant jdk makeWrapper pandoc ];
 
   src = fetchurl {
     url = "https://github.com/rstudio/rstudio/archive/v${version}.tar.gz";