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