From 617d5b7fca82ee8757decff563e195f149ee8875 Mon Sep 17 00:00:00 2001 From: "Bryan A. S" Date: Mon, 21 Sep 2020 02:13:58 -0300 Subject: [PATCH] velero: remove old heptio-ark package Signed-off-by: Bryan A. S --- .../networking/cluster/heptio-ark/default.nix | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 pkgs/applications/networking/cluster/heptio-ark/default.nix diff --git a/pkgs/applications/networking/cluster/heptio-ark/default.nix b/pkgs/applications/networking/cluster/heptio-ark/default.nix deleted file mode 100644 index aa86dcbeb241..000000000000 --- a/pkgs/applications/networking/cluster/heptio-ark/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ stdenv, buildGoPackage, fetchFromGitHub }: - -buildGoPackage rec { - pname = "heptio-ark"; - version = "0.10.0"; - - goPackagePath = "github.com/heptio/ark"; - - src = fetchFromGitHub { - rev = "v${version}"; - owner = "heptio"; - repo = "ark"; - sha256 = "18h9hvp95va0hyl268gnzciwy1dqmc57bpifbj885870rdfp0ffv"; - }; - - excludedPackages = [ "issue-template-gen" ]; - - meta = with stdenv.lib; { - description = "A utility for managing disaster recovery, specifically for your Kubernetes cluster resources and persistent volumes"; - homepage = "https://heptio.github.io/ark/"; - license = licenses.asl20; - maintainers = [maintainers.mbode]; - platforms = platforms.unix; - }; -}