about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-04 15:38:29 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-15 12:14:12 -0700
commiteae9889b8225a9acce42b4aa0b254ff9dca0a85c (patch)
tree729f497293b00b7af500649c63c5dcb47f4f7f3d /pkgs/development/web
parent3000e55b06243c3699e55c90bfc6ecfe409a5aae (diff)
openssl: Major bump 1.0.1 -> 1.0.2
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/iojs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/iojs/default.nix b/pkgs/development/web/iojs/default.nix
index 6a0c8ca512e81..a44a6d6c6c4a3 100644
--- a/pkgs/development/web/iojs/default.nix
+++ b/pkgs/development/web/iojs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, python, utillinux, openssl_1_0_2, http-parser, zlib, libuv }:
+{ stdenv, fetchurl, python, utillinux, openssl, http-parser, zlib, libuv }:
 
 let
   version = "3.1.0";
@@ -21,7 +21,7 @@ in stdenv.mkDerivation {
   # causes configure to fail, so don't add --disable-static.
   dontDisableStatic = true;
 
-  buildInputs = [ python openssl_1_0_2 http-parser zlib libuv ] ++ (optional stdenv.isLinux utillinux);
+  buildInputs = [ python openssl http-parser zlib libuv ] ++ (optional stdenv.isLinux utillinux);
   setupHook = ../nodejs/setup-hook.sh;
 
   passthru.interpreterName = "iojs";