mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
cd8bcb5f9f
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.
13 lines
294 B
Nix
13 lines
294 B
Nix
{ callPackage, fetchgit, fetchpatch, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "12.2.7";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/ceph/ceph.git";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "031nfw2g2fdpxxx39g862phgmdx68hj9r54axazandghfhc1bzrl";
|
|
};
|
|
|
|
})
|