lol

Merge pull request #201383 from yurket/d-seams_zhf_fix

d-seams: fix failing build

authored by

Sergei Trofimovich and committed by
GitHub
e4d99ffc ea35326f

+8 -1
+8 -1
pkgs/applications/science/chemistry/d-seams/default.nix
··· 1 - { clangStdenv, fetchFromGitHub, catch2, rang, fmt, libyamlcpp, cmake 1 + { clangStdenv, fetchFromGitHub, fetchpatch, catch2, rang, fmt, libyamlcpp, cmake 2 2 , eigen, lua, luaPackages, liblapack, blas, lib, boost, gsl }: 3 3 4 4 clangStdenv.mkDerivation rec { ··· 12 12 sha256 = "03zhhl9vhi3rhc3qz1g3zb89jksgpdlrk15fcr8xcz8pkj6r5b1i"; 13 13 }; 14 14 15 + patches = [ 16 + (fetchpatch { 17 + name = "use_newer_cxxopts_which_builds_with_clang11.patch"; 18 + url = "https://github.com/d-SEAMS/seams-core/commit/f6156057e43d0aa1a0df9de67d8859da9c30302d.patch"; 19 + hash = "sha256-PLbT1lqdw+69lIHH96MPcGRjfIeZyb88vc875QLYyqw="; 20 + }) 21 + ]; 15 22 nativeBuildInputs = [ cmake lua luaPackages.luafilesystem ]; 16 23 buildInputs = [ fmt rang libyamlcpp eigen catch2 boost gsl liblapack blas ]; 17 24