aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-12-21 22:13:23 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-12-21 22:13:46 +0100
commit86f4a6445abacf741fb40bbd0f4c23627a3febe6 (patch)
tree18386f4b9674778f3bdc338af657df7b2775413d /default.nix
parent9106eaf4633b3500cac2d83df47363e3e894b404 (diff)
downloadNix-86f4a6445abacf741fb40bbd0f4c23627a3febe6.tar.gz
Nix-86f4a6445abacf741fb40bbd0f4c23627a3febe6.tar.zst
Nix-86f4a6445abacf741fb40bbd0f4c23627a3febe6.zip
Add pg_activity
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/default.nix b/default.nix
index 9dd553c..4c9a35d 100644
--- a/default.nix
+++ b/default.nix
@@ -202,6 +202,9 @@ let
202 202
203 nagios-cli = python2Packages.buildPythonApplication (fetchedGithub ./fetched/nagios-cli.json); 203 nagios-cli = python2Packages.buildPythonApplication (fetchedGithub ./fetched/nagios-cli.json);
204 204
205 pg_activity = with python2Packages; buildPythonApplication (fetchedGithub ./fetched/pg_activity.json // rec {
206 propagatedBuildInputs = [ psycopg2 psutil ];
207 });
205# https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh 208# https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh
206# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks 209# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks
207in 210in
@@ -235,5 +238,6 @@ in
235 inherit abook khard khal; 238 inherit abook khard khal;
236 inherit graphicsmagick; 239 inherit graphicsmagick;
237 inherit youtube-dl; 240 inherit youtube-dl;
241 inherit pg_activity;
238 #inherit nixos; 242 #inherit nixos;
239 } 243 }