mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
34 lines
872 B
Nix
34 lines
872 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, libxcrypt-legacy # TODO: switch to libxcrypt for NixOS 24.11 (cf. same note on nixos/modules/services/misc/portunus.nix)
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "portunus";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "majewsky";
|
|
repo = "portunus";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-jicqH31Q+kDkOvtCg+HStQ4LUUzKm5ZO4utnAkCOLvY=";
|
|
};
|
|
|
|
buildInputs = [ libxcrypt-legacy ];
|
|
|
|
vendorHash = 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;
|
|
};
|
|
}
|