3
0
Fork 0
forked from mirrors/nixpkgs

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:
Uli Baum 2018-08-26 13:07:32 +02:00
parent 3d1331f438
commit cd8bcb5f9f
2 changed files with 5 additions and 3 deletions

View file

@ -1,12 +1,12 @@
{ callPackage, fetchgit, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "12.2.2";
version = "12.2.7";
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
sha256 = "01anqxyffa8l2lzgyb0dj6fjicfjdx2cq9y1klh24x69gxwkdh00";
sha256 = "031nfw2g2fdpxxx39g862phgmdx68hj9r54axazandghfhc1bzrl";
};
})

View file

@ -1706,7 +1706,9 @@ with pkgs;
nrg2iso = callPackage ../tools/cd-dvd/nrg2iso { };
libceph = ceph.lib;
ceph = callPackage ../tools/filesystems/ceph { boost = boost165; };
ceph = callPackage ../tools/filesystems/ceph {
boost = boost166.override { enablePython = true; };
};
ceph-dev = ceph;
certmgr = callPackage ../tools/security/certmgr { };