3
0
Fork 0
forked from mirrors/nixpkgs

* Simplify.

svn path=/nixos/branches/modular-nixos/; revision=16373
This commit is contained in:
Eelco Dolstra 2009-07-15 12:52:32 +00:00
parent 96fe3ba1b7
commit 1424399002

View file

@ -4,22 +4,20 @@ let
inherit (pkgs.lib) mkOption mergeListOption;
makeJob = job:
if job ? jobDrv then
job.jobDrv
else
pkgs.runCommand ("upstart-" + job.name)
{ inherit (job) job;
jobName = job.name;
buildHook = if job ? buildHook then job.buildHook else "true";
}
''
eval "$buildHook"
ensureDir $out/etc/event.d
echo "$job" > $out/etc/event.d/$jobName
'';
makeJob =
{name, job, buildHook ? "true", passthru ? null}:
pkgs.runCommand ("upstart-" + name)
{ inherit buildHook job; }
''
eval "$buildHook"
ensureDir $out/etc/event.d
echo "$job" > $out/etc/event.d/${name}
'';
jobs = map makeJob (config.jobs ++ config.services.extraJobs);
jobs =
[pkgs.upstart] # for the built-in logd job
++ map makeJob (config.jobs ++ config.services.extraJobs);
# Create an etc/event.d directory containing symlinks to the
# specified list of Upstart job files.
@ -98,11 +96,6 @@ in
}
];
services.extraJobs =
[ # For the built-in logd job.
{ jobDrv = pkgs.upstart; }
];
# see test/test-upstart-job.sh (!!! check whether this still works)
tests.upstartJobs = { recurseForDerivations = true; } //
builtins.listToAttrs (map (job: