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