mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
26 lines
515 B
Nix
26 lines
515 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
mkNginxPlugin,
|
|
}:
|
|
|
|
mkNginxPlugin (finalAttrs: {
|
|
pname = "aws-auth";
|
|
version = "2.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anomalizer";
|
|
repo = "ngx_aws_auth";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-CRofdhJ5HQGp4R1tEoOx0Nzx1rTTd+5GaJcfDsg75oM=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Proxy to authenticated AWS services";
|
|
homepage = "https://github.com/anomalizer/ngx_aws_auth";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ ];
|
|
broken = true;
|
|
};
|
|
})
|