Remove router.nix

This commit is contained in:
Nicolas Patry 2024-08-14 12:03:47 +02:00
parent 4a38185d78
commit 97c504136c
No known key found for this signature in database
GPG Key ID: 64AF4752B2967863

View File

@ -1,20 +0,0 @@
{ buildRustPackage, importCargoLock, pkg-config, protobuf, openssl }:
buildRustPackage {
name = "text-generation-router";
src = ./.;
sourceDir = ./backends/v3;
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl.dev protobuf ];
doCheck = false;
}