This commit is contained in:
nora 2024-08-12 00:48:10 +02:00
parent 4beea52be8
commit fe7407362b
3 changed files with 15 additions and 20 deletions

10
default.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> { }, ... }: pkgs.rustPlatform.buildRustPackage {
src = pkgs.lib.cleanSource ./.;
pname = "fakessh";
version = "0.1.0";
cargoLock.lockFile = ./Cargo.lock;
meta = {
mainProgram = "fakessh";
};
}