Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 15 lines 202 B view raw
1{ 2 callPackage, 3 nginxMainline, 4 ... 5}@args: 6 7callPackage ./generic.nix args { 8 pname = "nginxQuic"; 9 10 inherit (nginxMainline) src version; 11 12 configureFlags = [ 13 "--with-http_v3_module" 14 ]; 15}