about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/http/nginx/quic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/http/nginx/quic.nix')
-rw-r--r--nixpkgs/pkgs/servers/http/nginx/quic.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/http/nginx/quic.nix b/nixpkgs/pkgs/servers/http/nginx/quic.nix
new file mode 100644
index 000000000000..ea5af571f110
--- /dev/null
+++ b/nixpkgs/pkgs/servers/http/nginx/quic.nix
@@ -0,0 +1,14 @@
+{ callPackage
+, nginxMainline
+, ...
+} @ args:
+
+callPackage ./generic.nix args {
+  pname = "nginxQuic";
+
+  inherit (nginxMainline) src version;
+
+  configureFlags = [
+    "--with-http_v3_module"
+  ];
+}