1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00

fix: skip tests for aws-c-common as they fail on armv7l

This commit is contained in:
Thomas Boerger 2022-09-28 08:13:55 +02:00
parent 276f858889
commit 3bb24d3a5a
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B

@ -1,3 +1,8 @@
self: super:
{}
{
aws-c-common = super.aws-c-common.overrideAttrs (old: {
doCheck = false;
doInstallCheck = false;
});
}