aboutsummaryrefslogtreecommitdiff
path: root/pkgs/webapps/yourls/plugins/ldap/default.nix
blob: 01dc6fb8f70e24d2af59d4c11389bdc3c5025f1e (plain) (blame)
1
2
3
4
5
6
7
8
{ stdenv, mylibs }:
stdenv.mkDerivation (mylibs.fetchedGithub ./ldap.json // rec {
  installPhase = ''
    mkdir -p $out
    cp plugin.php $out
    '';
  passthru.pluginName = "ldap";
})