Skip to content

Commit d4dbff7

Browse files
muellerberndwentasah
authored andcommitted
[fix] gtsam for rolling and kilted
1 parent ab62799 commit d4dbff7

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

distros/kilted/overrides.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ in {
7373
fetchgitArgs.hash = "sha256-gztnxui9Fe/FTieMjdvfJjWHjkImtlsHn6fM1FruyME=";
7474
};
7575

76+
gtsam = rosSuper.gtsam.overrideAttrs ({
77+
nativeBuildInputs ? [], ...
78+
}: {
79+
# https://github.com/borglab/gtsam/pull/2171
80+
# boost is optional but enabled by default
81+
nativeBuildInputs = nativeBuildInputs ++ [ self.boost ];
82+
});
83+
7684
gz-cmake-vendor = lib.patchGzAmentVendorGit rosSuper.gz-cmake-vendor { };
7785

7886
gz-common-vendor = (lib.patchGzAmentVendorGit rosSuper.gz-common-vendor { }).overrideAttrs ({

distros/rolling/overrides.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ in {
7373
fetchgitArgs.hash = "sha256-gztnxui9Fe/FTieMjdvfJjWHjkImtlsHn6fM1FruyME=";
7474
};
7575

76+
gtsam = rosSuper.gtsam.overrideAttrs ({
77+
nativeBuildInputs ? [], ...
78+
}: {
79+
# https://github.com/borglab/gtsam/pull/2171
80+
# boost is optional but enabled by default
81+
nativeBuildInputs = nativeBuildInputs ++ [ self.boost ];
82+
});
83+
7684
gz-cmake-vendor = lib.patchAmentVendorGit rosSuper.gz-cmake-vendor { };
7785

7886
gz-common-vendor = (lib.patchAmentVendorGit rosSuper.gz-common-vendor { }).overrideAttrs ({

0 commit comments

Comments
 (0)