2023-01-07 23:36:11 +00:00
|
|
|
{ toolchain, makeRustPlatform, pkg-config }:
|
|
|
|
|
|
|
|
let rustPlatform = makeRustPlatform { inherit (toolchain) cargo rustc; };
|
|
|
|
|
|
|
|
in rustPlatform.buildRustPackage {
|
2023-02-11 17:34:35 +00:00
|
|
|
name = "liveterm";
|
2023-01-07 23:36:11 +00:00
|
|
|
src = ./.;
|
|
|
|
cargoLock.lockFile = ./Cargo.lock;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ ];
|
|
|
|
}
|