qt6.qthttpserver: init at 6.4.0

This commit is contained in:
Nick Cao 2022-09-29 21:19:28 +08:00
parent e0c3557efe
commit 945ab9315d
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

View file

@ -58,6 +58,7 @@ let
qtdatavis3d = callPackage ./modules/qtdatavis3d.nix { };
qtdeclarative = callPackage ./modules/qtdeclarative.nix { };
qtdoc = callPackage ./modules/qtdoc.nix { };
qthttpserver = callPackage ./modules/qthttpserver.nix { };
qtimageformats = callPackage ./modules/qtimageformats.nix { };
qtlanguageserver = callPackage ./modules/qtlanguageserver.nix { };
qtlottie = callPackage ./modules/qtlottie.nix { };

View file

@ -0,0 +1,9 @@
{ qtModule
, qtbase
, qtwebsockets
}:
qtModule {
pname = "qthttpserver";
qtInputs = [ qtbase qtwebsockets ];
}