Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch stack.yaml extra-packages git submodules #2066

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions overlays/haskell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ final: prev: {
# because it is not used by buitins.fetchGit.
assert isNull sha256;
builtins.fetchGit
({ inherit url rev; } //
({ inherit url rev; submodules = true; } //
final.buildPackages.lib.optionalAttrs (ref != null) { inherit ref; }
)
else
Expand All @@ -515,6 +515,7 @@ final: prev: {
url = url;
rev = rev;
sha256 = sha256;
submodules = true;
};

# This is basically entireRepo, but focused on the subdir if it is specified.
Expand Down Expand Up @@ -593,11 +594,11 @@ final: prev: {
if is-private
then
builtins.fetchGit
({ inherit url rev; } //
({ inherit url rev; submodules = true; } //
final.buildPackages.lib.optionalAttrs (ref != null) { inherit ref; }
)
else
final.fetchgit { inherit url rev sha256; };
final.fetchgit { inherit url rev sha256; submodules = true; };
} // final.buildPackages.lib.optionalAttrs (subdir != null && subdir != ".") { postUnpack = "sourceRoot+=/${subdir}; echo source root reset to $sourceRoot"; };
};

Expand Down