summaryrefslogtreecommitdiff
path: root/overlays/pelican
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/pelican')
-rw-r--r--overlays/pelican/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/overlays/pelican/default.nix b/overlays/pelican/default.nix
index 5f60b8f7..5a487aa6 100644
--- a/overlays/pelican/default.nix
+++ b/overlays/pelican/default.nix
@@ -1,6 +1,6 @@
1self: super: { 1self: super: {
2 pelican = with self.python3Packages; 2 pelican = with self.python3Packages;
3 pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // { 3 pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // {
4 propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml ]; 4 propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ];
5 }); 5 });
6} 6}