Fix supervisor package reference

This commit is contained in:
Sander van der Burg 2022-05-31 18:43:50 +02:00
parent 2a5fc3449d
commit 80e510ab58
3 changed files with 4 additions and 4 deletions

View File

@ -169,13 +169,13 @@ in
supervisord = import ./supervisord {
inherit createManagedProcess runtimeDir logDir;
inherit (pkgs.pythonPackages) supervisor;
inherit (pkgs.python3Packages) supervisor;
};
extendableSupervisord = import ./supervisord/extendable.nix {
inherit createManagedProcess libDir runtimeDir logDir;
inherit (pkgs) writeTextFile;
inherit (pkgs.pythonPackages) supervisor;
inherit (pkgs.python3Packages) supervisor;
};
svnserve = import ./svnserve {

View File

@ -44,7 +44,7 @@ createManagedProcess {
if [ "$found" != "1" ]
then
echo "ERRORDatabase was still not created!" >&2
echo "ERROR: Database was still not created!" >&2
exit 1
fi
'';

View File

@ -30,7 +30,7 @@ testService {
extraParams = {
inherit nix-processmgmt;
};
systemPackages = [ pkgs.pythonPackages.supervisor ];
systemPackages = [ pkgs.python3Packages.supervisor ];
readiness = {instanceName, instance, ...}:
''