about summary refs log tree commit diff
diff options
context:
space:
mode:
authoryurket <yurket2006@yandex.ru>2022-11-15 14:05:05 -0800
committeryurket <yurket2006@yandex.ru>2022-11-15 14:05:05 -0800
commit4e4a021fd77d4af89b7576e6187444df97379707 (patch)
treef65282d7cfd9cb7f30952ef37cdf5ad2fd8365db
parent2741fd822e52e1b12bfa29b0629b027e0a3583f5 (diff)
d-seams: fix failing builds
cxxopts failing to build with clang11:

  /build/source/src/include/external/cxxopts.hpp:488:42: error: no member named 'numeric_limits' in namespace 'std'
            if (u > static_cast<U>(-std::numeric_limits<T>::min()))

Use the patch from upstream, which updates cxxopts 2.2.0 -> 3.0.0
-rw-r--r--pkgs/applications/science/chemistry/d-seams/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/applications/science/chemistry/d-seams/default.nix b/pkgs/applications/science/chemistry/d-seams/default.nix
index 74260bacabcc9..dc41019d364b0 100644
--- a/pkgs/applications/science/chemistry/d-seams/default.nix
+++ b/pkgs/applications/science/chemistry/d-seams/default.nix
@@ -1,4 +1,4 @@
-{ clangStdenv, fetchFromGitHub, catch2, rang, fmt, libyamlcpp, cmake
+{ clangStdenv, fetchFromGitHub, fetchpatch, catch2, rang, fmt, libyamlcpp, cmake
 , eigen, lua, luaPackages, liblapack, blas, lib, boost, gsl }:
 
 clangStdenv.mkDerivation rec {
@@ -12,6 +12,13 @@ clangStdenv.mkDerivation rec {
     sha256 = "03zhhl9vhi3rhc3qz1g3zb89jksgpdlrk15fcr8xcz8pkj6r5b1i";
   };
 
+  patches = [
+    (fetchpatch {
+      name = "use_newer_cxxopts_which_builds_with_clang11.patch";
+      url = "https://github.com/d-SEAMS/seams-core/commit/f6156057e43d0aa1a0df9de67d8859da9c30302d.patch";
+      hash = "sha256-PLbT1lqdw+69lIHH96MPcGRjfIeZyb88vc875QLYyqw=";
+    })
+  ];
   nativeBuildInputs = [ cmake lua luaPackages.luafilesystem ];
   buildInputs = [ fmt rang libyamlcpp eigen catch2 boost gsl liblapack blas ];