]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - pelican/default.nix
Move backup directory to host subdir
[perso/Immae/Config/Nix.git] / pelican / default.nix
1 self: super: {
2 pelican = with self.python3Packages;
3 pelican.overrideAttrs(old: {
4 propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ];
5 doInstallCheck = false;
6 });
7 }