Files
FastSync/shell.nix
T
2026-06-10 16:58:35 +02:00

19 lines
255 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
gnumake
pkg-config
];
buildInputs = with pkgs; [
zstd
];
shellHook = ''
echo "fastSync development environment loaded"
'';
}