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": {
"locked": {
"lastModified": 1756542300,
"narHash": "sha256-tlOn88coG5fzdyqz6R93SQL5Gpq+m/DsWpekNFhqPQk=",
"lastModified": 1757487488,
"narHash": "sha256-zwE/e7CuPJUWKdvvTCB7iunV4E/+G0lKfv4kk/5Izdg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "d7600c775f877cd87b4f5a831c28aa94137377aa",
"rev": "ab0f3607a6c7486ea22229b92ed2d355f1482ee0",
"type": "github"
},
"original": {

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];