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