WIP deck methods, added flake, and setup build deps

This commit is contained in:
2024-07-05 08:49:59 -06:00
commit 777e07035b
10 changed files with 716 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
description = "An example project using flutter";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.zlsPkg.url = "path:./nix/zls";
outputs = {
flake-utils,
nixpkgs,
zlsPkg,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
zls = zlsPkg.defaultPackage.${system};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
lldb
sqlite
zig
zls
];
};
});
}