ceph: 0.94.2 -> 0.94.3

This commit is contained in:
William A. Kennington III
2015-08-28 17:49:03 -07:00
parent 2d16959bb8
commit 6d83b13734
3 changed files with 3 additions and 20 deletions
-13
View File
@@ -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 ];
})
+3 -6
View File
@@ -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 ];
})