Skip to content

Commit

Permalink
Make combinedPackages the identity to work around NixOS#86775
Browse files Browse the repository at this point in the history
  • Loading branch information
expipiplus1 committed Jun 12, 2020
1 parent 06b747c commit 8c7827d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkgs/development/haskell-modules/make-package-set.nix
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
# If `packages = [ a b ]` and `a` depends on `b`, don't build `b`,
# because cabal will end up ignoring that built version, assuming
# new-style commands.
combinedPackages = pkgs.lib.filter
(input: pkgs.lib.all (p: input.outPath or null != p.outPath) selected);
combinedPackages = x: x;

# Returns an attrset containing a combined list packages' inputs for each
# stage of the build process
Expand Down

0 comments on commit 8c7827d

Please sign in to comment.