First Commit

This commit is contained in:
Theo Tappe
2026-06-10 16:58:35 +02:00
commit 1e5eeb704f
42 changed files with 4037 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
gnumake
pkg-config
];
buildInputs = with pkgs; [
zstd
];
shellHook = ''
echo "fastSync development environment loaded"
'';
}