diff options
Diffstat (limited to 'overlays/pelican')
-rw-r--r-- | overlays/pelican/default.nix | 3 | ||||
-rw-r--r-- | overlays/pelican/pelican.json | 15 |
2 files changed, 2 insertions, 16 deletions
diff --git a/overlays/pelican/default.nix b/overlays/pelican/default.nix index 5a487aa6..4f8aece9 100644 --- a/overlays/pelican/default.nix +++ b/overlays/pelican/default.nix | |||
@@ -1,6 +1,7 @@ | |||
1 | self: super: { | 1 | self: super: { |
2 | pelican = with self.python3Packages; | 2 | pelican = with self.python3Packages; |
3 | pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // { | 3 | pelican.overrideAttrs(old: { |
4 | propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ]; | 4 | propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ]; |
5 | doInstallCheck = false; | ||
5 | }); | 6 | }); |
6 | } | 7 | } |
diff --git a/overlays/pelican/pelican.json b/overlays/pelican/pelican.json deleted file mode 100644 index d8f4425e..00000000 --- a/overlays/pelican/pelican.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
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 | } | ||