nix: add empty-clang and empty-clang-multi

This commit is contained in:
joachimschmidt557 2023-03-15 19:51:34 +01:00
parent 4740997b40
commit 9edb1ae55b
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
3 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ pkgs }:
pkgs.clangMultiStdenv.mkDerivation {
name = "empty development shell";
buildInputs = with pkgs; [
];
}

8
nix/empty-clang.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs }:
pkgs.clangStdenv.mkDerivation {
name = "empty development shell";
buildInputs = with pkgs; [
];
}