14 lines
328 B
Nix
Raw Normal View History

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-10-16 16:44:34 -07:00
version = "0.94.3.2";
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
2015-10-16 16:44:34 -07:00
sha256 = "112yprdy39cmhfgh6pfx34rlw9sp83fgzqixvgpq34akpykhad8c";
};
2015-04-21 14:57:48 -07:00
2015-08-28 17:49:03 -07:00
patches = [ ./fix-pgrefdebugging.patch ];
})