Files
nix-shells/cpp/flake.nix
2026-03-04 01:20:15 +01:00

32 lines
629 B
Nix

{
description = "Central C++ Dev Shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
outputs =
{ self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
ninja
gdb
pkg-config
valgrind
bind
perf
];
buildInputs = with pkgs; [
];
shellHook = ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH
'';
};
};
}