1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

azure-cli: init at 0.9.13

This commit is contained in:
Evgeny Egorochkin 2016-01-15 03:09:29 +02:00
parent a52b238bab
commit dcd428db08
4 changed files with 4988 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ recurseIntoAttrs, callPackage, nodejs
}:
let
self = (
callPackage ../../../top-level/node-packages.nix {
inherit nodejs self;
generated = callPackage ./node-packages.nix { inherit self; };
overrides = {
"azure-cli" = { passthru.nodePackages = self; };
"easy-table" = {
dontMakeSourcesWritable = 1;
postUnpack = ''
chmod -R 770 "$sourceRoot"
'';
};
};
});
in self.azure-cli

View file

@ -0,0 +1 @@
[ "azure-cli" ]

File diff suppressed because it is too large Load diff

View file

@ -584,6 +584,8 @@ let
awscli = pythonPackages.awscli;
azure-cli = callPackage ../tools/virtualization/azure-cli { };
ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { };
ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { };