nix/pkgs/switchwayf.nix
Ryan Lahfa b47ddc76b0 pkgs: init switchwayf
Signed-off-by: Ryan Lahfa <federez-infra@lahfa.xyz>
2024-02-14 01:13:10 +01:00

26 lines
695 B
Nix

{ lib
, stdenv
, fetchFromGitLab
}:
stdenv.mkDerivation rec {
pname = "switch-wayf";
version = "2.0";
src = fetchFromGitLab {
domain = "gitlab.switch.ch";
owner = "aai";
repo = "SWITCHwayf";
rev = "v${version}";
hash = "sha256-SqJzkV7dJXPUrY/9pz54VYxd8eAv+aFDik9F3N4WBIg=";
};
meta = with lib; {
description = "SAML Identity Provider Discovery Service implementation developed by SWITCH";
homepage = "https://gitlab.switch.ch/aai/SWITCHwayf";
changelog = "https://gitlab.switch.ch/aai/SWITCHwayf/-/blob/${src.rev}/CHANGES.md";
license = licenses.asl20;
maintainers = with maintainers; [ raitobezarius ];
platforms = platforms.all;
};
}