Skip to content

Commit

Permalink
update obligator, update home
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Mar 14, 2024
1 parent 2023baf commit c4967ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ in
pigz
procps
pssh
pylyzer
ranger
re2c
rlwrap
Expand Down
12 changes: 6 additions & 6 deletions pkgs/server/obligator.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
, fetchFromGitHub
}:

buildGoModule rec {
buildGoModule {
pname = "obligator";
version = "0.1.0";
version = "unstable-2024-03";

src = fetchFromGitHub {
owner = "anderspitman";
repo = "obligator";
rev = version;
hash = "sha256-ESuBYK7kcVR3PjSqswnnWG/VHEfkpgemkXp490TFX5s=";
rev = "37f75cc861f1bcd0dbf0f26a58e0f45bdae032ff";
hash = "sha256-Di4nH/veqp1dTwJBavRENOI/NMsvhNtgN0QZ4OU4lfw=";
};

vendorHash = "sha256-pEz4odZyqlWt11DTlBM5kWbcBbEIW2KoYlymaodVI/M=";
vendorHash = "sha256-snI3htyuBeeTOND8X5Wi+3WEW5xC+Y+C8jMfmiYAur4=";

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
license = licenses.mit;
maintainers = with maintainers; [ jpetrucciani ];
mainProgram = "obligator";
};
Expand Down

0 comments on commit c4967ae

Please sign in to comment.