_launcher.nix 303 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ buildRustPackage, importCargoLock, pkg-config, protobuf, openssl }:

buildRustPackage {
  name = "text-generation-lancher";

  src = ./.;

  sourceDir = ./launcher;

  cargoLock = {
    lockFile = ./Cargo.lock;
  };

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ openssl.dev protobuf ];

}