aboutsummaryrefslogtreecommitdiff
path: root/overlays/pelican/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-04-26 13:52:30 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-04-26 13:57:04 +0200
commit676e68e3394eeb07a02745d1cf191db9fee9e610 (patch)
tree973c57072eb9b784adab83fab8748d05a7ffc9c3 /overlays/pelican/default.nix
parent98de2045a749b25d031b174c940096b4f5406b9d (diff)
downloadNix-676e68e3394eeb07a02745d1cf191db9fee9e610.tar.gz
Nix-676e68e3394eeb07a02745d1cf191db9fee9e610.tar.zst
Nix-676e68e3394eeb07a02745d1cf191db9fee9e610.zip
Use overlays for package overrides
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 0000000..5f60b8f
--- /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}