guix-glicid/glicid/packages/storage.scm

40 lines
1.7 KiB
Scheme
Raw Permalink Normal View History

2024-03-25 12:23:59 +01:00
(define-module (glicid packages storage))
2024-03-25 15:16:46 +01:00
(use-modules (guix packages)
(guix git-download)
2025-02-10 13:12:59 +01:00
(guix download)
(gnu packages)
2024-03-25 12:23:59 +01:00
(gnu packages storage)
2024-09-06 22:50:05 +02:00
(gnu packages crypto)
2025-02-10 13:12:59 +01:00
(gnu packages python-xyz)
(gnu packages linux)
)
2024-03-25 12:23:59 +01:00
(define-public ceph-upstream
2025-02-10 13:12:59 +01:00
(package
(inherit ceph)
(name "ceph-upstream")
(version "17.2.7")
(source (origin
(method url-fetch)
(uri (string-append "https://download.ceph.com/tarballs/ceph-" version ".tar.gz"))
(sha256 (base32 "1612424yrf39dz010ygz8k5x1vc8731549ckfj1r39dg00m62klp"))
(patches
(search-patches "ceph-disable-cpu-optimizations.patch"))
(modules '((guix build utils)))
(snippet
'(for-each delete-file-recursively
'(
"src/arrow"
"src/c-ares"
"src/fmt"
"src/googletest"
"src/rapidjson"
"src/spdk"
"src/rocksdb"
"src/utf8proc")))))
(inputs (modify-inputs (package-inputs ceph) (append liburing libxcrypt)))
(native-inputs (modify-inputs (package-native-inputs ceph)
(append python-wcwidth)))))
2024-03-25 12:23:59 +01:00