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

6
backend/flake.lock generated
View File

@@ -77,11 +77,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1756542300, "lastModified": 1757487488,
"narHash": "sha256-tlOn88coG5fzdyqz6R93SQL5Gpq+m/DsWpekNFhqPQk=", "narHash": "sha256-zwE/e7CuPJUWKdvvTCB7iunV4E/+G0lKfv4kk/5Izdg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d7600c775f877cd87b4f5a831c28aa94137377aa", "rev": "ab0f3607a6c7486ea22229b92ed2d355f1482ee0",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

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