2013-03-26 11:09:02 +00:00
|
|
|
|
# Evaluate `release.nix' like Hydra would. Too bad nix-instantiate
|
|
|
|
|
# can't to do this.
|
2010-02-05 14:14:43 +00:00
|
|
|
|
|
2013-09-30 20:43:34 +00:00
|
|
|
|
with import ../../lib;
|
2010-02-05 14:14:43 +00:00
|
|
|
|
|
2012-01-12 16:59:58 +00:00
|
|
|
|
let
|
2013-01-14 22:28:18 +00:00
|
|
|
|
trace = if builtins.getEnv "VERBOSE" == "1" then builtins.trace else (x: y: y);
|
2010-02-05 14:14:43 +00:00
|
|
|
|
|
2013-03-26 10:53:36 +00:00
|
|
|
|
rel = removeAttrs (import ../../pkgs/top-level/release.nix { }) [ "tarball" "unstable" "xbursttools" ];
|
2010-02-05 14:14:43 +00:00
|
|
|
|
|
2012-01-12 16:59:58 +00:00
|
|
|
|
# Add the ‘recurseForDerivations’ attribute to ensure that
|
|
|
|
|
# nix-instantiate recurses into nested attribute sets.
|
2013-10-05 22:03:14 +00:00
|
|
|
|
recurse = path: attrs:
|
2013-03-26 10:53:36 +00:00
|
|
|
|
if (builtins.tryEval attrs).success then
|
2013-10-05 22:03:14 +00:00
|
|
|
|
if isDerivation attrs
|
2013-03-26 10:53:36 +00:00
|
|
|
|
then
|
2013-10-05 22:03:14 +00:00
|
|
|
|
if (builtins.tryEval attrs.drvPath).success
|
|
|
|
|
then { inherit (attrs) name drvPath; }
|
|
|
|
|
else { failed = true; }
|
|
|
|
|
else { recurseForDerivations = true; } //
|
|
|
|
|
mapAttrs (n: v: let path' = path ++ [n]; in trace path' (recurse path' v)) attrs
|
2013-03-26 10:53:36 +00:00
|
|
|
|
else { };
|
|
|
|
|
|
2013-10-05 22:03:14 +00:00
|
|
|
|
in recurse [] rel
|