mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Merge pull request #21344 from mdaiter/gWrap
gwrap: remove unnecessary checks
This commit is contained in:
commit
5c84eaaec3
@ -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