]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - overlays/shaarli/default.nix
c2fb9cce46b0e3d1ca0ef69aea05da07652a4c69
[perso/Immae/Config/Nix/NUR.git] / overlays / shaarli / default.nix
1 self: super: {
2 shaarli = varDir: super.shaarli.overrideAttrs (old: {
3 patchPhase = "";
4 patches = (old.patches or []) ++ [ ./shaarli_ldap.patch ];
5 installPhase = (old.installPhase or "") + ''
6 cp .htaccess $out/
7 ln -sf ${varDir}/{cache,pagecache,tmp,data} $out/
8 '';
9 });
10 }