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 = "6.2.32"; 13 sha256 = "1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9"; 14 license = lib.licenses.agpl3Only; 15 extraPatches = [ 16 ./clang-6.0.patch 17 ./CVE-2017-10140-cwd-db_config.patch 18 ./darwin-mutexes.patch 19 ]; 20 } 21)