Loading pkgs/by-name/co/coan/fix-path-operator-plus.diff 0 → 100644 +11 −0 Original line number Diff line number Diff line diff --git a/src/path.h b/src/path.h --- a/src/path.h +++ b/src/path.h @@ -232,7 +232,7 @@ */ path operator+(std::string const & str) const { path p(*this); - p.append(str); + p.push_back(str); return p; } pkgs/by-name/co/coan/package.nix +2 −0 Original line number Diff line number Diff line Loading @@ -18,6 +18,8 @@ stdenv.mkDerivation (finalAttrs: { patches = [ # fix compile error in configure.ac ./fix-big-endian-config-check.diff # Fix GCC 15 build: path::operator+ calls a nonexistent append() member. ./fix-path-operator-plus.diff ]; nativeBuildInputs = [ Loading Loading
pkgs/by-name/co/coan/fix-path-operator-plus.diff 0 → 100644 +11 −0 Original line number Diff line number Diff line diff --git a/src/path.h b/src/path.h --- a/src/path.h +++ b/src/path.h @@ -232,7 +232,7 @@ */ path operator+(std::string const & str) const { path p(*this); - p.append(str); + p.push_back(str); return p; }
pkgs/by-name/co/coan/package.nix +2 −0 Original line number Diff line number Diff line Loading @@ -18,6 +18,8 @@ stdenv.mkDerivation (finalAttrs: { patches = [ # fix compile error in configure.ac ./fix-big-endian-config-check.diff # Fix GCC 15 build: path::operator+ calls a nonexistent append() member. ./fix-path-operator-plus.diff ]; nativeBuildInputs = [ Loading