CLI_Game/nix/default.nix

18 lines
244 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.rustPlatform.buildRustPackage {
name = "HermitSearch";
src = ../.;
cargoLock = {
lockFile = ../Cargo.lock;
};
nativeBuildInputs = with pkgs; [
];
buildInputs = with pkgs; [
];
}