about summary refs log tree commit diff
path: root/pkgs/tools/misc/azure-vhd-utils/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/azure-vhd-utils/default.nix')
-rw-r--r--pkgs/tools/misc/azure-vhd-utils/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/misc/azure-vhd-utils/default.nix b/pkgs/tools/misc/azure-vhd-utils/default.nix
deleted file mode 100644
index 79dd9d6b538bc..0000000000000
--- a/pkgs/tools/misc/azure-vhd-utils/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, buildGoPackage, fetchFromGitHub }:
-
-buildGoPackage rec {
-  pname = "azure-vhd-utils";
-  version = "unstable-2016-06-14";
-
-  goPackagePath = "github.com/Microsoft/azure-vhd-utils";
-
-  src = fetchFromGitHub {
-    owner = "Microsoft";
-    repo = "azure-vhd-utils";
-    rev = "070db2d701a462ca2edcf89d677ed3cac309d8e8";
-    sha256 = "sha256-8EH7RpuAeYKd5z64mklKKlFi20KYcx2WhVmkRbdaMy0=";
-  };
-
-  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;
-  };
-}
-