virtualbox: fix eval

This commit is contained in:
Jan Tojnar 2019-12-30 22:01:39 +01:00
parent 2093fa784a
commit 21280e418d
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -31,7 +31,7 @@ let
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "0bqhr3ndchvfhxb31147z8gd81dysyz5dwkvmp56832d0js2564q";
};
NIX_CFLAGS_COMPILE = old.NIX_CFLAGS_COMPILE ++ [ "-Wno-error=stringop-truncation" ];
NIX_CFLAGS_COMPILE = old.NIX_CFLAGS_COMPILE + " -Wno-error=stringop-truncation";
});
in stdenv.mkDerivation {
pname = "virtualbox";