diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-05 15:57:20 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:04:54 +0200 |
commit | 2bcc666fd591dbf7543fc550ff1772508695a746 (patch) | |
tree | 65bb255cbeba40f4c385211bcc32df4c25e6ea6b /overlays/pelican | |
parent | 27794e1507ab5bd4b0f31278cf8049854790e4a7 (diff) | |
download | NUR-2bcc666fd591dbf7543fc550ff1772508695a746.tar.gz NUR-2bcc666fd591dbf7543fc550ff1772508695a746.tar.zst NUR-2bcc666fd591dbf7543fc550ff1772508695a746.zip |
Upgrade to nixos-unstable
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 | } | ||