nix: add empty-multi dev shell

This commit is contained in:
joachimschmidt557 2023-03-05 11:54:48 +01:00
parent b1fedaa1db
commit f1efd948a4
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
2 changed files with 9 additions and 0 deletions

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

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