]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - overlays/pelican/default.nix
Upgrade goaccess and adjust parsing
[perso/Immae/Config/Nix.git] / overlays / pelican / default.nix
index 5f60b8f75885b87b23499f699a5297852df670e0..4f8aece997c246ea2c984395827cbc32a7415cf2 100644 (file)
@@ -1,6 +1,7 @@
 self: super: {
   pelican = with self.python3Packages;
-    pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // {
-      propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml ];
+    pelican.overrideAttrs(old: {
+      propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ];
+      doInstallCheck = false;
     });
 }