about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-28 17:49:03 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-08-28 17:49:03 -0700
commit6d83b137345f435d2eb1822731a04b9524a19295 (patch)
tree8f7308365012b7ff65b6ec6ded925b125ccf6c27 /pkgs/tools/filesystems/ceph
parent2d16959bb838797a60a10ae48ad35c4d818ab462 (diff)
downloadnixlib-6d83b137345f435d2eb1822731a04b9524a19295.tar
nixlib-6d83b137345f435d2eb1822731a04b9524a19295.tar.gz
nixlib-6d83b137345f435d2eb1822731a04b9524a19295.tar.bz2
nixlib-6d83b137345f435d2eb1822731a04b9524a19295.tar.lz
nixlib-6d83b137345f435d2eb1822731a04b9524a19295.tar.xz
nixlib-6d83b137345f435d2eb1822731a04b9524a19295.tar.zst
nixlib-6d83b137345f435d2eb1822731a04b9524a19295.zip
ceph: 0.94.2 -> 0.94.3
Diffstat (limited to 'pkgs/tools/filesystems/ceph')
-rw-r--r--pkgs/tools/filesystems/ceph/0.94-pre.nix13
-rw-r--r--pkgs/tools/filesystems/ceph/0.94.nix9
2 files changed, 3 insertions, 19 deletions
diff --git a/pkgs/tools/filesystems/ceph/0.94-pre.nix b/pkgs/tools/filesystems/ceph/0.94-pre.nix
deleted file mode 100644
index fcf57526fd1c..000000000000
--- a/pkgs/tools/filesystems/ceph/0.94-pre.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ callPackage, fetchgit, ... } @ args:
-
-callPackage ./generic.nix (args // rec {
-  version = "0.94.3";
-
-  src = fetchgit {
-    url = "https://github.com/wkennington/ceph.git";
-    rev = "6218aa41e04533f0d6e62b5c7be591c2e99716ec";
-    sha256 = "0cyl5i1q6lap5a6vk8fjxfpikhxzwm9zkybg37nibahi2bwjr7rr";
-  };
-
-  patches = [ ./fix-pgrefdebugging.patch ];
-})
diff --git a/pkgs/tools/filesystems/ceph/0.94.nix b/pkgs/tools/filesystems/ceph/0.94.nix
index 4dca90e5f273..f564e28c5a3b 100644
--- a/pkgs/tools/filesystems/ceph/0.94.nix
+++ b/pkgs/tools/filesystems/ceph/0.94.nix
@@ -1,16 +1,13 @@
 { callPackage, fetchgit, ... } @ args:
 
 callPackage ./generic.nix (args // rec {
-  version = "0.94.2";
+  version = "0.94.3";
 
   src = fetchgit {
     url = "https://github.com/ceph/ceph.git";
     rev = "refs/tags/v${version}";
-    sha256 = "1nhqzmxv7bz93b8rbd88wgmw9icm2lhmc94dfscgh23kfpipyd6l";
+    sha256 = "020khb9978wayi4jnx7f9g1fzfg3r2xn9qw66snpd3k8w2dmycxy";
   };
 
-  patches = [
-    ./fix-pgrefdebugging.patch
-    ./boost-158.patch
-  ];
+  patches = [ ./fix-pgrefdebugging.patch ];
 })