This commit is contained in:
2025-09-12 01:50:03 +10:00
parent 02e115382b
commit bad5e09746
2 changed files with 9 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
{
description = "lead-rust";
description = "lead";
inputs = {
naersk.url = "github:nix-community/naersk";
@@ -28,6 +28,11 @@
nativeBuildInputs = nativeBuildInputs;
};
apps.${system}.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/lead";
};
devShells.${system}.default = pkgs.mkShell {
inputsFrom = [self.packages.${system}.default];