ceph: Add 0.94 pre

This commit is contained in:
William A. Kennington III
2015-08-04 17:14:06 -07:00
parent 778ea83849
commit 10d10b000a
2 changed files with 14 additions and 0 deletions
+13
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 ];
})