Skip to content

Commit

Permalink
add obligator
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Oct 11, 2023
1 parent 6139b3b commit 18ba5d2
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkgs/server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,14 @@ This directory contains specific servers

## In this directory

### [obligator.nix](./obligator.nix)

[Obligator](https://github.com/anderspitman/obligator) is a simple and opinionated OpenID Connect server designed for self-hosters

### [parseable.nix](./parseable.nix)

[Parseable](https://github.com/parseablehq/parseable) is a log analytics system written in Rust. It is built for high throughput log ingestion cases.

### [poglets.nix](./poglets.nix)

[poglets](https://github.com/jpetrucciani/poglets) is a TCP tunneling system
28 changes: 28 additions & 0 deletions pkgs/server/obligator.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
pname = "obligator";
version = "0.1.0";

src = fetchFromGitHub {
owner = "anderspitman";
repo = "obligator";
rev = version;
hash = "sha256-ESuBYK7kcVR3PjSqswnnWG/VHEfkpgemkXp490TFX5s=";
};

vendorHash = "sha256-pEz4odZyqlWt11DTlBM5kWbcBbEIW2KoYlymaodVI/M=";

ldflags = [ "-s" "-w" ];

meta = with lib; {
description = "Simple and opinionated OpenID Connect server designed for self-hosters";
homepage = "https://github.com/anderspitman/obligator";
license = licenses.unfree; # FIXME: nix-init did not found a license
maintainers = with maintainers; [ jpetrucciani ];
mainProgram = "obligator";
};
}

0 comments on commit 18ba5d2

Please sign in to comment.