aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-12-22 15:09:30 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-12-22 15:10:03 +0100
commitdab1955fdaa364303e9184570b4ff6d88c8dbeed (patch)
tree8373c9f11c5676d9d36be1b7e1b21048d8cef172
parent444be9147a496b5563d4830a5148fc5318a64738 (diff)
downloadNix-dab1955fdaa364303e9184570b4ff6d88c8dbeed.tar.gz
Nix-dab1955fdaa364303e9184570b4ff6d88c8dbeed.tar.zst
Nix-dab1955fdaa364303e9184570b4ff6d88c8dbeed.zip
Add some more tools
-rw-r--r--default.nix8
-rw-r--r--fetched/pelican.json15
2 files changed, 23 insertions, 0 deletions
diff --git a/default.nix b/default.nix
index 11dcf0d..4e6657c 100644
--- a/default.nix
+++ b/default.nix
@@ -222,6 +222,10 @@ let
222 ''; 222 '';
223 }); 223 });
224 224
225 pelican = python3Packages.pelican.overrideAttrs(old: fetchedGithub ./fetched/pelican.json // rec {
226 propagatedBuildInputs = old.propagatedBuildInputs ++ [ python3Packages.pyyaml ];
227 });
228
225# https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh 229# https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh
226# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks 230# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks
227in 231in
@@ -268,5 +272,9 @@ in
268 inherit w3m lynx links; 272 inherit w3m lynx links;
269 inherit gitRepo; 273 inherit gitRepo;
270 inherit valgrind; 274 inherit valgrind;
275 inherit iotop iperf;
276 inherit keybase;
277 inherit bogofilter;
278 inherit pelican;
271 #inherit nixos; 279 #inherit nixos;
272 } 280 }
diff --git a/fetched/pelican.json b/fetched/pelican.json
new file mode 100644
index 0000000..d8f4425
--- /dev/null
+++ b/fetched/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}