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 = "5.3.28";
14 sha256 = "0a1n5hbl7027fbz5lm0vp0zzfp1hmxnz14wx3zl9563h83br5ag0";
15 extraPatches = [
16 ./clang-5.3.patch
17 ./CVE-2017-10140-cwd-db_config.patch
18 ./darwin-mutexes.patch
19 ];
20 }
21)