portunus: init at 1.1.0-beta.2

This commit is contained in:
Sandro Jäckel 2022-07-18 23:48:29 +02:00
parent 16dbcfa7d6
commit 9f54821839
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "portunus";
version = "1.1.0-beta.2";
src = fetchFromGitHub {
owner = "majewsky";
repo = "portunus";
rev = "v${version}";
sha256 = "sha256-hGOMbaEWecgQvpk/2E8mcJZ9QMjllIhS3RBr7PKnbjQ=";
};
vendorSha256 = null;
postInstall = ''
mv $out/bin/{,portunus-}orchestrator
mv $out/bin/{,portunus-}server
'';
meta = with lib; {
description = "Self-contained user/group management and authentication service";
homepage = "https://github.com/majewsky/portunus";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ majewsky ] ++ teams.c3d2.members;
};
}

View file

@ -22306,6 +22306,8 @@ with pkgs;
podgrab = callPackage ../servers/misc/podgrab { };
portunus = callPackage ../servers/portunus { };
prosody = callPackage ../servers/xmpp/prosody {
withExtraLibs = [];
withExtraLuaPackages = _: [];