depot/third_party/nixpkgs/pkgs/tools/misc/azure-vhd-utils/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
857 B
Nix

# This file was generated by go2nix.
{ lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
pname = "azure-vhd-utils";
version = "20160614-${lib.strings.substring 0 7 rev}";
rev = "070db2d701a462ca2edcf89d677ed3cac309d8e8";
goPackagePath = "github.com/Microsoft/azure-vhd-utils";
src = fetchgit {
inherit rev;
url = "https://github.com/Microsoft/azure-vhd-utils";
sha256 = "0b9kbavlb92rhnb1swwq8bdn4l9a994rmf1ywyfq4yc0kd3gnhgh";
};
goDeps = ./deps.nix;
meta = with lib; {
homepage = "https://github.com/Microsoft/azure-vhd-utils";
description = "Read, inspect and upload VHD files for Azure";
longDescription = "Go package to read Virtual Hard Disk (VHD) file, a CLI interface to upload local VHD to Azure storage and to inspect a local VHD";
license = licenses.mit;
platforms = platforms.unix;
};
}