Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
671 B
Nix
26 lines
671 B
Nix
{
|
|
php,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
php.buildComposerProject2 (finalAttrs: {
|
|
pname = "simplesamlphp";
|
|
version = "1.19.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simplesamlphp";
|
|
repo = "simplesamlphp";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-Qmy9fuZq8MBqvYV6/u3Dg92pHHicuUhdNeB22u4hwwA=";
|
|
};
|
|
|
|
vendorHash = "sha256-kFRvOxSfqlM+xzFFlEm9YrbQDOvC4AA0BtztFQ1xxDU=";
|
|
|
|
meta = {
|
|
description = "Application written in native PHP that deals with authentication (SQL, .htpasswd, YubiKey, LDAP, PAPI, Radius)";
|
|
homepage = "https://simplesamlphp.org";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = with lib.maintainers; [ nhnn ];
|
|
};
|
|
})
|