crystal: Fix runtime by switching to openssl_1_0_2
This makes `crystal play` work
This commit is contained in:
parent
1d0749139d
commit
7f6a9eef26
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, fetchurl, makeWrapper
|
{ stdenv, lib, fetchFromGitHub, fetchurl, makeWrapper
|
||||||
, coreutils, git, gmp, nettools, openssl, readline, tzdata, libxml2, libyaml
|
, coreutils, git, gmp, nettools, openssl_1_0_2, readline, tzdata, libxml2, libyaml
|
||||||
, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which, zlib
|
, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which, zlib
|
||||||
, callPackage }:
|
, callPackage }:
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ let
|
|||||||
|
|
||||||
arch = archs."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
arch = archs."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
||||||
|
|
||||||
checkInputs = [ git gmp openssl readline libxml2 libyaml ];
|
checkInputs = [ git gmp openssl_1_0_2 readline libxml2 libyaml ];
|
||||||
|
|
||||||
genericBinary = { version, sha256s, rel ? 1 }:
|
genericBinary = { version, sha256s, rel ? 1 }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -73,7 +73,7 @@ let
|
|||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boehmgc libatomic_ops pcre libevent libyaml
|
boehmgc libatomic_ops pcre libevent libyaml
|
||||||
llvm zlib openssl
|
llvm zlib openssl_1_0_2
|
||||||
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
||||||
libiconv
|
libiconv
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user