gwrap: remove unnecessary checks

This commit is contained in:
Matthew Daiter 2016-12-21 17:14:18 -05:00
parent 4d26238690
commit 8be93a55bf

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";