ceph: fix build, 12.2.2 -> 12.2.7
Since 772eef9168
, Boost
doesn't support by python by default, which broke ceph.
Also bump to 12.2.7, the latest release of ceph 12.
This commit is contained in:
parent
3d1331f438
commit
cd8bcb5f9f
|
@ -1,12 +1,12 @@
|
||||||
{ callPackage, fetchgit, fetchpatch, ... } @ args:
|
{ callPackage, fetchgit, fetchpatch, ... } @ args:
|
||||||
|
|
||||||
callPackage ./generic.nix (args // rec {
|
callPackage ./generic.nix (args // rec {
|
||||||
version = "12.2.2";
|
version = "12.2.7";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/ceph/ceph.git";
|
url = "https://github.com/ceph/ceph.git";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "01anqxyffa8l2lzgyb0dj6fjicfjdx2cq9y1klh24x69gxwkdh00";
|
sha256 = "031nfw2g2fdpxxx39g862phgmdx68hj9r54axazandghfhc1bzrl";
|
||||||
};
|
};
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -1706,7 +1706,9 @@ with pkgs;
|
||||||
nrg2iso = callPackage ../tools/cd-dvd/nrg2iso { };
|
nrg2iso = callPackage ../tools/cd-dvd/nrg2iso { };
|
||||||
|
|
||||||
libceph = ceph.lib;
|
libceph = ceph.lib;
|
||||||
ceph = callPackage ../tools/filesystems/ceph { boost = boost165; };
|
ceph = callPackage ../tools/filesystems/ceph {
|
||||||
|
boost = boost166.override { enablePython = true; };
|
||||||
|
};
|
||||||
ceph-dev = ceph;
|
ceph-dev = ceph;
|
||||||
|
|
||||||
certmgr = callPackage ../tools/security/certmgr { };
|
certmgr = callPackage ../tools/security/certmgr { };
|
||||||
|
|
Loading…
Reference in New Issue