Skip to content

Commit

Permalink
nginxModules: add auth-a2aclr
Browse files Browse the repository at this point in the history
  • Loading branch information
fufexan committed Sep 2, 2021
1 parent 8e29eb2 commit f5bbf7c
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pkgs/servers/http/nginx/modules.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ fetchFromGitHub, lib, pkgs }:
{ fetchFromGitHub, fetchFromGitLab, lib, pkgs }:

let

Expand Down Expand Up @@ -33,6 +33,29 @@ in
inputs = [ pkgs.openssl ];
};

auth-a2aclr = {
src = fetchFromGitLab {
name = "auth-a2aclr";
owner = "arpa2";
repo = "nginx-auth-a2aclr";
rev = "bbabf9480bb2b40ac581551883a18dfa6522dd63";
sha256 = "sha256-h2LgMhreCgod+H/bNQzY9BvqG9ezkwikwWB3T6gHH04=";
};
inputs = [
(pkgs.arpa2common.overrideAttrs
(old: rec {
version = "0.7.1";

src = fetchFromGitLab {
owner = "arpa2";
repo = "arpa2common";
rev = "v${version}";
sha256 = "sha256-8zVsAlGtmya9EK4OkGUMu2FKJRn2Q3bg2QWGjqcii64=";
};
}))
];
};

aws-auth = {
src = fetchFromGitHub {
name = "aws-auth";
Expand Down

0 comments on commit f5bbf7c

Please sign in to comment.