ceph: Add 0.94 pre

This commit is contained in:
William A. Kennington III 2015-08-04 17:13:30 -07:00
parent 778ea83849
commit 10d10b000a
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "0.94.3";
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "c19b0fc1aa2834ae3027b07a02aebe9639fc2ca7";
sha256 = "1h1y5jh2bszia622rmwdblb3cpkpd0mijahkaiasr30jwpkmzh0i";
};
patches = [ ./fix-pgrefdebugging.patch ];
})

View file

@ -1066,6 +1066,7 @@ 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 { });