Backend docker deploy
This commit is contained in:
parent
a1cb1a30d9
commit
f117e4cb65
5 changed files with 95 additions and 25 deletions
55
backend/converted.nix
Normal file
55
backend/converted.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{ mkDerivation
|
||||
, aeson
|
||||
, base
|
||||
, bytestring
|
||||
, classy-prelude
|
||||
, http-types
|
||||
, lib
|
||||
, lifted-base
|
||||
, mtl
|
||||
, text
|
||||
, uuid
|
||||
, wai
|
||||
, 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
|
||||
warp
|
||||
websockets
|
||||
];
|
||||
executableHaskellDepends = [
|
||||
aeson
|
||||
base
|
||||
bytestring
|
||||
classy-prelude
|
||||
http-types
|
||||
lifted-base
|
||||
mtl
|
||||
text
|
||||
uuid
|
||||
wai
|
||||
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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue