diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-29 09:51:47 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:52 +0100 |
| commit | e2bbd905da29b8dedc72a53423b92b8586387c6a (patch) | |
| tree | 24a2b200153a77224f75e2ca5872aa3cb40c8b88 | |
| parent | c3922d1fdc391d060305fbf3f97f03ea515a40d2 (diff) | |
gnu: spdk: Switch to pyproject.
* gnu/packages/storage.scm (spdk):
[arguments]<#:imported-modules, #:modules, #:phases>: Switch to
pyproject-build-system.
Change-Id: I2227b3da7722bcc4a64e4691b7aa466c6a0365b6
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/storage.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/storage.scm b/gnu/packages/storage.scm index c4440a4ec10..27d6a4d9b20 100644 --- a/gnu/packages/storage.scm +++ b/gnu/packages/storage.scm @@ -77,6 +77,7 @@ #:use-module (gnu packages) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (guix download) #:use-module (guix gexp) @@ -382,11 +383,11 @@ clients. The key features are: #:tests? #f #:imported-modules (append %default-gnu-imported-modules - %python-build-system-modules) + %pyproject-build-system-modules) #:validate-runpath? #f #:modules '((guix build gnu-build-system) (guix build utils) - ((guix build python-build-system) #:prefix python:) + ((guix build pyproject-build-system) #:prefix py:) (ice-9 rdelim) (ice-9 popen)) #:configure-flags @@ -453,7 +454,7 @@ clients. The key features are: `("LD_LIBRARY_PATH" ":" prefix (,(string-append #$output "/lib")))))) binaries)))) (add-after 'patchelf 'python:wrap - (assoc-ref python:%standard-phases 'wrap)) + (assoc-ref py:%standard-phases 'wrap)) (add-after 'python:wrap 'wrap-python-scripts (lambda* (#:key inputs #:allow-other-keys) (let* ((scripts '("bin/spdk_cli" "bin/spdk_rpc" )) |
