jitsi-roomsv2/backend/converted.nix

63 lines
978 B
Nix
Raw Normal View History

2025-01-20 20:49:45 +01:00
{
mkDerivation,
aeson,
base,
bytestring,
classy-prelude,
http-types,
lib,
lifted-base,
mtl,
text,
uuid,
wai,
wai-extra,
warp,
websockets,
optparse-applicative,
2023-04-07 16:19:13 +02:00
}:
mkDerivation {
pname = "jitsi-rooms";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson
base
bytestring
classy-prelude
http-types
lifted-base
mtl
text
uuid
wai
2023-06-19 19:45:49 +02:00
wai-extra
2023-04-07 16:19:13 +02:00
warp
websockets
2025-01-20 20:49:45 +01:00
optparse-applicative
2023-04-07 16:19:13 +02:00
];
executableHaskellDepends = [
aeson
base
bytestring
classy-prelude
http-types
lifted-base
mtl
text
uuid
wai
2023-06-19 19:45:49 +02:00
wai-extra
2023-04-07 16:19:13 +02:00
warp
websockets
2025-01-20 20:49:45 +01:00
optparse-applicative
2023-04-07 16:19:13 +02:00
];
homepage = "https://github.com/githubuser/jitsi-rooms#readme";
license = lib.licenses.bsd3;
mainProgram = "jitsi-rooms-exe";
enableSharedExecutables = false;
postFixup = "rm -rf $out/lib $out/nix-support $out/share/doc";
}