mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
portunus: init at 1.1.0-beta.2
This commit is contained in:
parent
16dbcfa7d6
commit
9f54821839
31
pkgs/servers/portunus/default.nix
Normal file
31
pkgs/servers/portunus/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -22306,6 +22306,8 @@ with pkgs;
|
||||
|
||||
podgrab = callPackage ../servers/misc/podgrab { };
|
||||
|
||||
portunus = callPackage ../servers/portunus { };
|
||||
|
||||
prosody = callPackage ../servers/xmpp/prosody {
|
||||
withExtraLibs = [];
|
||||
withExtraLuaPackages = _: [];
|
||||
|
Loading…
Reference in New Issue
Block a user