Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-16 09:59:23 +00:00
parent 6022298d8d
commit 8019b9b498
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
gcc
cmake
gnumake
];
}