mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
https://hydra.nixos.org/build/325898125/nixlog/2/tail
Same situation as in commit 8ab9645b5a
26 lines
436 B
Nix
26 lines
436 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchpatch,
|
|
fetchurl,
|
|
autoreconfHook,
|
|
autoconf269,
|
|
...
|
|
}@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;
|
|
}
|
|
)
|