_server.nix 240 Bytes
Newer Older
1
2
3
4
5
6
{
  mkPoetryApplication,
  pkg-config,
  protobuf,
  openssl,
}:
Nicolas Patry's avatar
Nicolas Patry committed
7
8
9
10
11
12
13
14
15
16
17

mkPoetryApplication {
  # name = "text-generation-server";

  projectDir = ./server;

  # nativeBuildInputs = [ pkg-config ];

  # buildInputs = [ openssl.dev protobuf ];

}