Merge pull request #49252 from zarelit/crystal_play

crystal: fix "play" subcommand
This commit is contained in:
Jörg Thalheim 2018-10-28 23:50:44 +00:00 committed by GitHub
commit b770be49b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ stdenv, lib, fetchFromGitHub, fetchurl, makeWrapper
, gmp, openssl, readline, tzdata, libxml2, libyaml
, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which }:
, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which, zlib }:
let
binaryVersion = "0.26.0";
@ -57,7 +57,7 @@ let
buildInputs = [
boehmgc libatomic_ops pcre libevent
llvm
llvm zlib openssl
] ++ stdenv.lib.optionals stdenv.isDarwin [
libiconv
];