aboutsummaryrefslogtreecommitdiff
path: root/pkgs/webapps/ttrss/plugins/auth_ldap/default.nix
blob: 424a9f7c3d83ce5c01922aaa365173f3eaf85ca2 (plain) (blame)
1
2
3
4
5
6
7
8
{ stdenv, mylibs }:
stdenv.mkDerivation (mylibs.fetchedGithub ./auth-ldap.json // {
  installPhase = ''
    mkdir $out
    cp plugins/auth_ldap/init.php $out
    '';
  passthru.pluginName = "auth_ldap";
})