Merge pull request #21344 from mdaiter/gWrap

gwrap: remove unnecessary checks
This commit is contained in:
Graham Christensen 2017-01-23 19:56:40 -05:00 committed by GitHub
commit 5c84eaaec3

View File

@ -9,12 +9,11 @@ stdenv.mkDerivation rec {
# Note: Glib support is optional, but it's quite useful (e.g., it's
# used by Guile-GNOME).
buildInputs = [ guile pkgconfig glib ]
++ stdenv.lib.optional doCheck guile_lib;
buildInputs = [ guile pkgconfig glib guile_lib ];
propagatedBuildInputs = [ libffi ];
doCheck = !stdenv.isFreeBSD; # XXX: 00-socket.test hangs
doCheck = true;
meta = {
description = "G-Wrap, a wrapper generator for Guile";