about summary refs log tree commit diff
path: root/maintainers/scripts/haskell/transitive-broken-packages.nix
blob: 50ccb14577bc16b1d5a9d6cf25e57862ea364917 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let
  nixpkgs = import ../../..;
  inherit (nixpkgs {}) pkgs lib;
  getEvaluating = x:
    builtins.attrNames (
      lib.filterAttrs (
        _: v: (builtins.tryEval (v.outPath or null)).success && lib.isDerivation v && !v.meta.broken
      ) x
    );
  brokenDeps = lib.subtractLists
    (getEvaluating pkgs.haskellPackages)
    (getEvaluating (nixpkgs { config.allowBroken = true; }).haskellPackages);
in
''
  ${lib.concatMapStringsSep "\n" (x: " - ${x}") brokenDeps}
''