]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - overlays/pelican/default.nix
Use fetchgit rather than builtins
[perso/Immae/Config/Nix/NUR.git] / overlays / 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 }