dotfiles/nix/basic-cmake.nix
2023-01-19 18:56:19 +01:00

7 lines
72 B
Nix

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