Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / tt-rss / plugin-auth-ldap / default.nix
blob6261c1f5f3fd6f0115e64005e246e13606c5959f
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "tt-rss-plugin-auth-ldap";
5   version = "unstable-2022-11-30";
7   src = fetchFromGitHub {
8     owner = "hydrian";
9     repo = "TTRSS-Auth-LDAP";
10     rev = "582ade49fd433a30b403caa1d0689fca5f3c99e1";
11     sha256 = "sha256-favz/2KvWqvv8ehTv3gc7TBbFDjkrOmutChnyKPgces=";
12   };
14   installPhase = ''
15     install -D plugins/auth_ldap/init.php $out/auth_ldap/init.php
16   '';
18   meta = with lib; {
19     description = "Plugin for TT-RSS to authenticate users via ldap";
20     license = licenses.asl20;
21     homepage = "https://github.com/hydrian/TTRSS-Auth-LDAP";
22     maintainers = with maintainers; [ mic92 ];
23     platforms = platforms.all;
24   };