ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / maintainers / scripts / eval-release.nix
blobbb9572cbc795679d5f0be93218aa9192b590e624
1 # Evaluate `release.nix' like Hydra would.  Too bad nix-instantiate
2 # can't to do this.
4 with import ../../lib;
6 let
7   trace = if builtins.getEnv "VERBOSE" == "1" then builtins.trace else (x: y: y);
9   rel = removeAttrs (import ../../pkgs/top-level/release.nix { }) [ "tarball" "unstable" "xbursttools" ];
11   # Add the â€˜recurseForDerivations’ attribute to ensure that
12   # nix-instantiate recurses into nested attribute sets.
13   recurse = path: attrs:
14     if (builtins.tryEval attrs).success then
15       if isDerivation attrs
16       then
17         if (builtins.tryEval attrs.drvPath).success
18         then { inherit (attrs) name drvPath; }
19         else { failed = true; }
20       else { recurseForDerivations = true; } //
21            mapAttrs (n: v: let path' = path ++ [n]; in trace path' (recurse path' v)) attrs
22     else { };
24 in recurse [] rel