Merge pull request #169463 from LibreCybernetics/fix-dm-tree

python3Packages.dm-tree: fix gcc11 build due to abseil-cpp version mismatch
This commit is contained in:
Samuel Ainsworth 2022-04-20 11:49:24 -07:00 committed by GitHub
commit 0c57b0b341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2410,7 +2410,11 @@ in {
dm-sonnet = callPackage ../development/python-modules/dm-sonnet { };
dm-tree = callPackage ../development/python-modules/dm-tree { };
dm-tree = callPackage ../development/python-modules/dm-tree {
abseil-cpp = pkgs.abseil-cpp.override {
cxxStandard = "14";
};
};
dnachisel = callPackage ../development/python-modules/dnachisel { };