dotfiles/dev-shells/basic-cmake.nix
2024-04-21 13:15:23 +02:00

7 lines
72 B
Nix

{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
];
}