8 lines
116 B
Nix
8 lines
116 B
Nix
{ pkgs }:
|
|
|
|
pkgs.clangStdenv.mkDerivation {
|
|
name = "empty development shell";
|
|
|
|
buildInputs = with pkgs; [
|
|
];
|
|
}
|