Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions pkgs/tools/filesystems/ceph/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, ensureNewerSourcesHook
, cmake, pkg-config
, which, git
, boost
, boost175
, libxml2, zlib, lz4
, openldap, lttng-ust
, babeltrace, gperf
Expand All @@ -21,7 +21,7 @@
, doxygen
, graphviz
, fmt
, python3
, python39

# Optional Dependencies
, yasm ? null, fcgi ? null, expat ? null
Expand Down Expand Up @@ -104,7 +104,13 @@ let
meta = getMeta "Ceph common module for code shared by manager modules";
};

python = python3;
# Boost 1.75 is not compatible with Python 3.10
python = python39;

boost = boost175.override {
enablePython = true;
inherit python;
};

ceph-python-env = python.withPackages (ps: [
ps.sphinx
Expand Down
1 change: 0 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4601,7 +4601,6 @@ with pkgs;

libceph = ceph.lib;
inherit (callPackages ../tools/filesystems/ceph {
boost = boost175.override { enablePython = true; python = python3; };
lua = lua5_4;
})
ceph
Expand Down