2022-07-18 21:48:29 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2024-06-01 08:28:21 +00:00
|
|
|
, libxcrypt
|
2024-08-17 22:29:43 +00:00
|
|
|
, nixosTests
|
2022-07-18 21:48:29 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "portunus";
|
2023-12-31 00:52:01 +00:00
|
|
|
version = "2.1.1";
|
2022-07-18 21:48:29 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "majewsky";
|
|
|
|
repo = "portunus";
|
|
|
|
rev = "v${version}";
|
2023-12-31 00:52:01 +00:00
|
|
|
sha256 = "sha256-+pMMIutj+OWKZmOYH5NuA4a7aS5CD+33vAEC9bJmyfM=";
|
2022-07-18 21:48:29 +00:00
|
|
|
};
|
|
|
|
|
2024-06-01 08:28:21 +00:00
|
|
|
buildInputs = [ libxcrypt ];
|
2023-12-27 16:55:09 +00:00
|
|
|
|
2023-09-21 17:11:11 +00:00
|
|
|
vendorHash = null;
|
2022-07-18 21:48:29 +00:00
|
|
|
|
2024-08-17 22:29:43 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) portunus; };
|
|
|
|
|
2022-07-18 21:48:29 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|