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

8 lines
116 B
Nix

{ pkgs }:
pkgs.clangStdenv.mkDerivation {
name = "empty development shell";
buildInputs = with pkgs; [
];
}