summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph/default.nix
diff options
context:
space:
mode:
authorUli Baum <xeji@cat3.de>2018-08-26 13:07:32 +0200
committerUli Baum <xeji@cat3.de>2018-08-26 13:11:57 +0200
commitcd8bcb5f9f02557a04781679fc450c8e6cf08a68 (patch)
tree4c968d4ca0b38eea5ddc4cde74e779a6c70a05a5 /pkgs/tools/filesystems/ceph/default.nix
parent3d1331f438b536f65fa4f5a07cbcb9eaaae8ce2f (diff)
downloadnixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.tar
nixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.tar.gz
nixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.tar.bz2
nixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.tar.lz
nixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.tar.xz
nixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.tar.zst
nixpkgs-cd8bcb5f9f02557a04781679fc450c8e6cf08a68.zip
ceph: fix build, 12.2.2 -> 12.2.7
Since 772eef91686974b7710081a9a77e5c0e287c25e8, Boost
doesn't support by python by default, which broke ceph.

Also bump to 12.2.7, the latest release of ceph 12.
Diffstat (limited to 'pkgs/tools/filesystems/ceph/default.nix')
-rw-r--r--pkgs/tools/filesystems/ceph/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix
index 0f712853f24..ef3e36ff627 100644
--- a/pkgs/tools/filesystems/ceph/default.nix
+++ b/pkgs/tools/filesystems/ceph/default.nix
@@ -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";
   };
 
 })