Initial commit

This commit is contained in:
2026-07-16 14:33:51 +02:00
commit 0c3da958e2
59 changed files with 4868 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
gnumake
pkg-config
tea
];
buildInputs = with pkgs; [
zstd
];
NIX_ENFORCE_PURITY = 0;
shellHook = ''
export NIX_ENFORCE_PURITY=0
cmake -B build
export PATH="$PWD/build:$PATH"
'';
}