mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
gwrap: remove unnecessary checks
This commit is contained in:
parent
4d26238690
commit
8be93a55bf
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user