db: fix all versions with libc++3.8

This commit is contained in:
Daiderd Jordan
2016-11-13 23:02:00 +01:00
parent c7d1925b6e
commit b82ad1ba76
10 changed files with 286 additions and 106 deletions
+4 -3
View File
@@ -2,8 +2,9 @@
import ./generic.nix (args // rec {
version = "4.8.30";
extraPatches = [ ./clang-4.8.patch ];
sha256 = "0ampbl2f0hb1nix195kz1syrqqxpmvnvnfvphambj7xjrl3iljg0";
branch = "4.8";
drvArgs = { hardeningDisable = [ "format" ]; };
extraPatches = [ ./clang-4.8.patch ];
drvArgs.hardeningDisable = [ "format" ];
drvArgs.doCheck = false;
})