about summary refs log tree commit diff
path: root/nixpkgs/maintainers/scripts/haskell/dependencies.nix
blob: 5965b1ba182847f432f695dadcb3d6330c6acfe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Nix script to calculate the Haskell dependencies of every haskellPackage. Used by ./hydra-report.hs.
let
  pkgs = import ../../.. {};
  inherit (pkgs) lib;
  getDeps = _: pkg: let
    pname = pkg.pname or null;
  in {
    deps = builtins.filter (x: x != null && x != pname) (map (x: x.pname or null) (pkg.propagatedBuildInputs or []));
    broken = (pkg.meta.hydraPlatforms or [null]) == [];
  };
in
  lib.mapAttrs getDeps pkgs.haskellPackages