Skip to content

buildFromSdist gets set to false when defaults.settings.default is present #300

Description

@johnhampton

#298 ensures that buildFromSdist is set to true for local packages. However if defaults.settings.default.haddock is set, buildFromSdist gets reset to false.

This results in a build with buildFromSdist set to true.

        haskellProjects.default = {
          # defaults.settings.default = { haddock = true;  };

          # Project settings here
        };

This results in a build with buildFromSdist set to false.

        haskellProjects.default = {
          defaults.settings.default = { haddock = true;  };

          # Project settings here
        };

I can force it back to true with:

        haskellProjects.default = {
          defaults.settings.default = { haddock = true; buildFromSdist = true; };

          # Project settings here
        };

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions