Starting to go places. More testing in place, need to solidify the dashboard api boundary next

This commit is contained in:
Nate Anderson
2025-06-12 11:36:30 -06:00
commit 8ea06b12f7
44 changed files with 7736 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
description = "Simple dart flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
flake-utils,
nixpkgs,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
dart
sqlite
];
shellHook = ''
export LD_LIBRARY_PATH="${pkgs.sqlite.out}/lib:$LD_LIBRARY_PATH"
'';
};
});
}