mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
f8f44e1610
the configure program fails to compile due to using exit without a
function prototype. the fix should be to patch the configure script.
This reverts commit 227afde6d8
.
15 lines
373 B
Nix
15 lines
373 B
Nix
{ lib, stdenv, fetchurl, autoreconfHook, ... } @ args:
|
|
|
|
import ./generic.nix (args // {
|
|
version = "4.8.30";
|
|
sha256 = "0ampbl2f0hb1nix195kz1syrqqxpmvnvnfvphambj7xjrl3iljg0";
|
|
extraPatches = [
|
|
./clang-4.8.patch
|
|
./CVE-2017-10140-4.8-cwd-db_config.patch
|
|
./darwin-mutexes-4.8.patch
|
|
];
|
|
|
|
drvArgs.hardeningDisable = [ "format" ];
|
|
drvArgs.doCheck = false;
|
|
})
|