csmith: Workaround broken libbsd on Darwin

This commit is contained in:
Will Dietz 2017-07-03 14:54:10 -05:00
parent 050ee80ddb
commit 5516a2b6a1

View File

@ -6666,6 +6666,9 @@ with pkgs;
csmith = callPackage ../development/tools/misc/csmith {
inherit (perlPackages) perl SysCPU;
# Workaround optional dependency on libbsd that's
# currently broken on Darwin.
libbsd = if stdenv.isDarwin then null else libbsd;
};
csslint = callPackage ../development/web/csslint { };