about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2018-03-13 21:43:37 +0000
committerMatthew Justin Bauer <mjbauer95@gmail.com>2018-03-23 21:12:25 -0500
commit814225cf2221f5a5192dc67a9170e799eae47e1c (patch)
treea845e71ffd17d7ee8124aa4f1c62f2aeb9fc14e6 /pkgs/tools
parent507f095f06fc47442ed083ce0a6e0daf0bd964f5 (diff)
aws-auth: remove
No longer works with current awscli versions, unmaintained upstream
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/admin/aws-auth/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/admin/aws-auth/default.nix b/pkgs/tools/admin/aws-auth/default.nix
deleted file mode 100644
index 9f36a6403a176..0000000000000
--- a/pkgs/tools/admin/aws-auth/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv, fetchFromGitHub, makeWrapper, jq, awscli }:
-
-stdenv.mkDerivation rec {
-  version = "unstable-2017-07-24";
-  name = "aws-auth-${version}";
-
-  src = fetchFromGitHub {
-    owner = "alphagov";
-    repo = "aws-auth";
-    rev = "5a4c9673f9f00ebaa4bb538827e1c2f277c475e1";
-    sha256 = "095j9zqxra8hi2iyz0y4azs9yigy5f6alqkfmv180pm75nbc031g";
-  };
-
-  nativeBuildInputs = [ makeWrapper ];
-
-  dontBuild = true;
-
-  # copy script and set $PATH
-  installPhase = ''
-    install -D $src/aws-auth.sh $out/bin/aws-auth
-    wrapProgram $out/bin/aws-auth \
-      --prefix PATH : ${stdenv.lib.makeBinPath [ awscli jq ]}
-  '';
-
-  meta = {
-    homepage = https://github.com/alphagov/aws-auth;
-    description = "AWS authentication wrapper to handle MFA and IAM roles";
-    license = stdenv.lib.licenses.mit;
-    maintainers = with stdenv.lib.maintainers; [ ris ];
-  };
-}