diff options
| author | Brendan Tildesley <mail@brendan.scot> | 2025-11-25 22:47:20 +0800 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-25 18:53:09 +0000 |
| commit | 11c65425d8204e0112c85b537406e5b41775c96b (patch) | |
| tree | 4678ff8d8f31ef13d562626bad0804e5af131a48 /gnu/packages/serialization.scm | |
| parent | d3e8c33566556bde59ab8315ecd4c22f40e7a329 (diff) | |
gnu: python-rencode: Make tunable
* gnu/packages/serialization.scm (python-rencode):
Add gcc package and mark as tunable.
Change-Id: I9696512c3cf8a69c2a7a16b9e5a90bd18c5dc569
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/serialization.scm')
| -rw-r--r-- | gnu/packages/serialization.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index feb9f523c76..87260ca97e9 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -22,6 +22,7 @@ ;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu> ;;; Copyright © 2024, 2025 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2025 Hennadii Stepanov <hebasto@gmail.com> +;;; Copyright © 2025 Brendan Tildesley <mail@brendan.scot> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1153,7 +1154,10 @@ interface description protocol and its associated command line tool") (("^COMPILE_ARGS.*") "COMPILE_ARGS: list[str] = []\n"))))))) (native-inputs - (list python-cython + ;; XXX: Borrow the same hack to make --tune work from python-pyscf to fix + ;; guix build: error: failed to determine which compiler is used + (list (canonical-package gcc) + python-cython python-pytest python-poetry-core python-setuptools)) @@ -1166,5 +1170,6 @@ heterogeneous data structures with many small elements, r-encoding stake up significantly less space than b-encodings. This version of rencode is a complete rewrite in Cython to attempt to increase the performance over the pure Python module.") - (license license:bsd-3))) + (license license:bsd-3) + (properties '((tunable? . #t))))) |
