liveterm/default.nix
Michael Zhang b5d3e63807
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Test some docker push
2023-02-11 11:34:35 -06:00

12 lines
289 B
Nix

{ toolchain, makeRustPlatform, pkg-config }:
let rustPlatform = makeRustPlatform { inherit (toolchain) cargo rustc; };
in rustPlatform.buildRustPackage {
name = "liveterm";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ];
}