diff options
| author | Marius Bakke <marius@gnu.org> | 2022-10-16 16:17:22 +0200 |
|---|---|---|
| committer | Marius Bakke <marius@gnu.org> | 2022-10-17 14:49:41 +0200 |
| commit | 5a5b729d662c6ad069548b1e4331b7f51c31616b (patch) | |
| tree | 2797a4082992193cf54584588574b0bccbb36a28 /gnu/packages/cpp.scm | |
| parent | 883fb8f41b08a8455f16c736a83fb1ae8a3df0a1 (diff) | |
gnu: abseil-cpp: Don't use 'package/inherit'.
* gnu/packages/cpp.scm (abseil-cpp): Use object inheritance instead of
PACKAGE/INHERIT because the inherited package has a different source, thus
replacements should not be inherited.
Diffstat (limited to 'gnu/packages/cpp.scm')
| -rw-r--r-- | gnu/packages/cpp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index c8df516834b..0994ca88bf0 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1025,7 +1025,8 @@ Google's C++ code base.") (define-public abseil-cpp (let ((base abseil-cpp-20200923.3)) - (package/inherit base + (package + (inherit base) (name "abseil-cpp") (version "20220623.1") (source (origin |
