Intial commit

This commit is contained in:
2026-03-03 16:35:29 +05:30
commit 0ec11e20ac
9 changed files with 280 additions and 0 deletions

34
flake.nix Normal file
View File

@@ -0,0 +1,34 @@
{
description = "Vektor flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs =
{
self,
nixpkgs,
}:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
clang-tools
lldb
meson
ninja
pkg-config
gtk4
gdb
];
shellHook = "";
};
};
}