2022-07-18 22:48:29 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "portunus";
|
2022-08-19 15:36:31 +01:00
|
|
|
version = "1.1.0";
|
2022-07-18 22:48:29 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "majewsky";
|
|
|
|
repo = "portunus";
|
|
|
|
rev = "v${version}";
|
2022-08-19 15:36:31 +01:00
|
|
|
sha256 = "sha256-+sq5Wja0tVkPZ0Z++K2A6my9LfLJ4twxtoEAS6LHqzE=";
|
2022-07-18 22:48:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|