]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - overlays/pelican/default.nix
Add some tools to immae-eu env
[perso/Immae/Config/Nix.git] / overlays / pelican / default.nix
1 self: super: {
2 pelican = with self.python3Packages;
3 pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // {
4 propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ];
5 });
6 }