From 6fa503c7b3e437a2016bb04d383842d08df3be60 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Fri, 3 Jun 2022 02:21:37 +0000 Subject: [PATCH] azure-vhd-utils: remove azure-vhd-utils is lack of maintenance from upstream since 2018. --- pkgs/tools/misc/azure-vhd-utils/default.nix | 26 ------------------ pkgs/tools/misc/azure-vhd-utils/deps.nix | 29 --------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 -- 4 files changed, 1 insertion(+), 57 deletions(-) delete mode 100644 pkgs/tools/misc/azure-vhd-utils/default.nix delete mode 100644 pkgs/tools/misc/azure-vhd-utils/deps.nix 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 79dd9d6b538b..000000000000 --- 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; - }; -} - diff --git a/pkgs/tools/misc/azure-vhd-utils/deps.nix b/pkgs/tools/misc/azure-vhd-utils/deps.nix deleted file mode 100644 index d07af99d5e59..000000000000 --- a/pkgs/tools/misc/azure-vhd-utils/deps.nix +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - goPackagePath = "github.com/Azure/azure-sdk-for-go"; - fetch = { - type = "git"; - url = "https://github.com/Azure/azure-sdk-for-go"; - rev = "0884ebb4c8e7c980527348a4d134a65286042afc"; - sha256 = "0ixsq409akq1ff12352kp5gkbh370rpbw0m0pbwjr42cqvnzs9k0"; - }; - } - { - goPackagePath = "github.com/Microsoft/azure-vhd-utils-for-go"; - fetch = { - type = "git"; - url = "https://github.com/Microsoft/azure-vhd-utils-for-go"; - rev = "070db2d701a462ca2edcf89d677ed3cac309d8e8"; - sha256 = "0b9kbavlb92rhnb1swwq8bdn4l9a994rmf1ywyfq4yc0kd3gnhgh"; - }; - } - { - goPackagePath = "github.com/codegangsta/cli"; - fetch = { - type = "git"; - url = "https://github.com/codegangsta/cli"; - rev = "f614c177b70c0f0e92c368d623c8770bf337c5d6"; - sha256 = "1l70f07v0dsp2k2pm0lmr42fp4y72j1g0czf4fkxwhvgbly3al98"; - }; - } -] diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 7bfc9bfdc649..c8e95c4be85a 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -96,6 +96,7 @@ mapAliases ({ awesome-4-0 = awesome; # Added 2022-05-05 aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 + azure-vhd-utils = throw "azure-vhd-utils has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 ### B ### diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 24744e9eefd4..d57ad99d5059 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1900,8 +1900,6 @@ with pkgs; azure-storage-azcopy = callPackage ../development/tools/azcopy { }; - azure-vhd-utils = callPackage ../tools/misc/azure-vhd-utils { }; - awless = callPackage ../tools/virtualization/awless { }; bashblog = callPackage ../tools/text/bashblog { };