Skip to content

Commit e2d8be6

Browse files
committed
Fix release dist to include static binaries
Previously, the release distributions included the dynamic (rather than statically-built) binaries. There was a subtle bug that caused the static haskell.nix project to be ignored and use the default (dynamic). It was introduced by b6a024c. Fixes: #2108 See also: PR #1962
1 parent afeef4e commit e2d8be6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@
483483
let
484484
mkDist = platform: project:
485485
let
486-
exeVals = builtins.attrValues exes;
486+
exeVals = builtins.attrValues (setGitRevs project.exes);
487487
name = "cardano-db-sync-${version}-${platform}";
488488
version = project.exes.cardano-db-sync.identifier.version;
489489
env = {

0 commit comments

Comments
 (0)