Skip to content

Commit

Permalink
crystal: fix "play" subcommand (#49422)
Browse files Browse the repository at this point in the history
(backport of commit 473c890)
  • Loading branch information
zarelit authored and xeji committed Oct 29, 2018
1 parent 68cf714 commit af7d54e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/compilers/crystal/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, makeWrapper
, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which }:
, boehmgc, libatomic_ops, pcre, libevent, libiconv, llvm, clang, which
, openssl, zlib }:

stdenv.mkDerivation rec {
name = "crystal-${version}";
Expand Down Expand Up @@ -33,7 +34,7 @@ stdenv.mkDerivation rec {

# crystal on Darwin needs libiconv to build
libs = [
boehmgc libatomic_ops pcre libevent
boehmgc libatomic_ops pcre libevent openssl zlib
] ++ stdenv.lib.optionals stdenv.isDarwin [
libiconv
];
Expand Down

0 comments on commit af7d54e

Please sign in to comment.