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

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 ];
})

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 ];
})

View file

@ -1066,7 +1066,6 @@ let
libceph = ceph.lib;
ceph-0_80 = callPackage ../tools/filesystems/ceph/0.80.nix { };
ceph-0_94 = callPackage ../tools/filesystems/ceph/0.94.nix { };
ceph-0_94-pre = callPackage ../tools/filesystems/ceph/0.94-pre.nix { };
ceph = callPackage ../tools/filesystems/ceph { };
ceph-dev = lowPrio (callPackage ../tools/filesystems/ceph/dev.nix { });
ceph-git = lowPrio (callPackage ../tools/filesystems/ceph/git.nix { });