about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/oauth2-proxy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/oauth2-proxy/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/oauth2-proxy/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/oauth2-proxy/default.nix b/nixpkgs/pkgs/servers/oauth2-proxy/default.nix
new file mode 100644
index 000000000000..7c2bcbe4740a
--- /dev/null
+++ b/nixpkgs/pkgs/servers/oauth2-proxy/default.nix
@@ -0,0 +1,25 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "oauth2-proxy";
+  version = "7.0.1";
+
+  src = fetchFromGitHub {
+    repo = pname;
+    owner = "oauth2-proxy";
+    sha256 = "sha256-PvoCR+JYaQeHlnO6H75LcY7Lszi1nNNe6SCd3sJJ6R4=";
+    rev = "v${version}";
+  };
+
+  vendorSha256 = "sha256-kclpoZ33JOciP2IUCQZB5idA7rgbWxPPFNwZU+pEJFU=";
+
+  # Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile
+  buildFlagsArray = ("-ldflags=-X main.VERSION=${version}");
+
+  meta = with lib; {
+    description = "A reverse proxy that provides authentication with Google, Github, or other providers";
+    homepage = "https://github.com/oauth2-proxy/oauth2-proxy/";
+    license = licenses.mit;
+    maintainers = with maintainers; [ yorickvp knl ];
+  };
+}