removed trace lines, Thanks raskin

svn path=/nixos/trunk/; revision=11144
This commit is contained in:
Marc Weber 2008-03-16 11:03:03 +00:00
parent 40d9d62879
commit e4757b33b1

View File

@ -19,13 +19,13 @@ let
# options is the same format as options.nix, but only contains documentation for this job
# TODO check validation
newProposalJobs =
__trace (pkgs.lib.whatis config) (
(
let
inherit (pkgs.lib) getAttr;
inherit (builtins) attrNames pathExists map;
services = pkgs.lib.traceWhatis ( getAttr [ "servicesProposal" ] {} config);
services = getAttr [ "servicesProposal" ] {} config;
nameToJobs = name : (
__trace ("name : ${name}") (
(
let p = ./newProposal + "/${name}.nix";
p2 = ./newProposal + "/${name}/default.nix";
thisConfig = getAttr [ name ] {} services;