Files
FastSync/shell.nix
T
TapTap 478bdd6fe6
CI / build-and-test (push) Successful in 27s
CI / build-and-test (pull_request) Successful in 26s
add docker as dependency
2026-07-18 16:31:55 +02:00

27 lines
339 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
gnumake
pkg-config
docker
tea
];
buildInputs = with pkgs; [
zstd
];
NIX_ENFORCE_PURITY = 0;
shellHook = ''
export NIX_ENFORCE_PURITY=0
cmake -B build
export PATH="$PWD/build:$PATH"
'';
}