This commit is contained in:
2026-06-21 11:02:44 +02:00
parent 80403f9b7b
commit 0a34ff323f
7 changed files with 5612 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{
description = "Liasion (Clay)";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
gcc
gnumake
pkg-config
raylib
gdb
curl
];
shellHook = ''
echo "Clay + raylib dev shell ready cd src && make"
'';
};
}
);
}