fix add missing dep

This commit is contained in:
FileFighter ServiceUser 2025-01-20 20:49:45 +01:00
parent fd18fa1a8b
commit f5917a02ec
2 changed files with 21 additions and 16 deletions

View file

@ -1,18 +1,20 @@
{ mkDerivation
, aeson
, base
, bytestring
, classy-prelude
, http-types
, lib
, lifted-base
, mtl
, text
, uuid
, wai
, wai-extra
, warp
, websockets
{
mkDerivation,
aeson,
base,
bytestring,
classy-prelude,
http-types,
lib,
lifted-base,
mtl,
text,
uuid,
wai,
wai-extra,
warp,
websockets,
optparse-applicative,
}:
mkDerivation {
pname = "jitsi-rooms";
@ -34,6 +36,7 @@ mkDerivation {
wai-extra
warp
websockets
optparse-applicative
];
executableHaskellDepends = [
aeson
@ -49,6 +52,7 @@ mkDerivation {
wai-extra
warp
websockets
optparse-applicative
];
homepage = "https://github.com/githubuser/jitsi-rooms#readme";
license = lib.licenses.bsd3;