aboutsummaryrefslogtreecommitdiff
path: root/overlays/pelican
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
parent98de2045a749b25d031b174c940096b4f5406b9d (diff)
downloadNix-676e68e3394eeb07a02745d1cf191db9fee9e610.tar.gz
Nix-676e68e3394eeb07a02745d1cf191db9fee9e610.tar.zst
Nix-676e68e3394eeb07a02745d1cf191db9fee9e610.zip
Use overlays for package overrides
Diffstat (limited to 'overlays/pelican')
-rw-r--r--overlays/pelican/default.nix6
-rw-r--r--overlays/pelican/pelican.json15
2 files changed, 21 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}
diff --git a/overlays/pelican/pelican.json b/overlays/pelican/pelican.json
new file mode 100644
index 0000000..d8f4425
--- /dev/null
+++ b/overlays/pelican/pelican.json
@@ -0,0 +1,15 @@
1{
2 "tag": "4.0.1",
3 "meta": {
4 "name": "pelican",
5 "url": "https://github.com/getpelican/pelican",
6 "branch": "refs/tags/4.0.1"
7 },
8 "github": {
9 "owner": "getpelican",
10 "repo": "pelican",
11 "rev": "24d6efa9fda4ad45649ddf88c1c596193d589bf8",
12 "sha256": "09fcwnnfln0cl5v0qpxzrllj27znrg6dbhaksxrl0192c3mbyjvl",
13 "fetchSubmodules": true
14 }
15}