59 lines
887 B
Nix
59 lines
887 B
Nix
{ mkDerivation
|
|
, aeson
|
|
, base
|
|
, bytestring
|
|
, classy-prelude
|
|
, http-types
|
|
, lib
|
|
, lifted-base
|
|
, mtl
|
|
, text
|
|
, uuid
|
|
, wai
|
|
, wai-extra
|
|
, warp
|
|
, websockets
|
|
}:
|
|
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
|
|
wai-extra
|
|
warp
|
|
websockets
|
|
];
|
|
executableHaskellDepends = [
|
|
aeson
|
|
base
|
|
bytestring
|
|
classy-prelude
|
|
http-types
|
|
lifted-base
|
|
mtl
|
|
text
|
|
uuid
|
|
wai
|
|
wai-extra
|
|
warp
|
|
websockets
|
|
];
|
|
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";
|
|
}
|