qt6.qthttpserver: init at 6.4.0
This commit is contained in:
parent
e0c3557efe
commit
945ab9315d
2 changed files with 10 additions and 0 deletions
|
@ -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 { };
|
||||
|
|
9
pkgs/development/libraries/qt-6/modules/qthttpserver.nix
Normal file
9
pkgs/development/libraries/qt-6/modules/qthttpserver.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ qtModule
|
||||
, qtbase
|
||||
, qtwebsockets
|
||||
}:
|
||||
|
||||
qtModule {
|
||||
pname = "qthttpserver";
|
||||
qtInputs = [ qtbase qtwebsockets ];
|
||||
}
|
Loading…
Reference in a new issue