5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
16 lines
259 B
Nix
16 lines
259 B
Nix
{
|
|
pkgs ? import ../../../../default.nix { },
|
|
}:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "nixcfg-azure-devenv";
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
azure-cli
|
|
bash
|
|
cacert
|
|
azure-storage-azcopy
|
|
];
|
|
|
|
AZURE_CONFIG_DIR = "/tmp/azure-cli/.azure";
|
|
}
|