Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 stdenv,
4 fetchpatch,
5 fetchurl,
6 autoreconfHook,
7 ...
8}@args:
9
10import ./generic.nix (
11 args
12 // {
13 version = "4.8.30";
14 sha256 = "0ampbl2f0hb1nix195kz1syrqqxpmvnvnfvphambj7xjrl3iljg0";
15 extraPatches = [
16 ./clang-4.8.patch
17 ./CVE-2017-10140-4.8-cwd-db_config.patch
18 ./darwin-mutexes-4.8.patch
19 ];
20
21 drvArgs.hardeningDisable = [ "format" ];
22 drvArgs.doCheck = false;
23 }
24)