nixpkgs/pkgs/tools/filesystems/ceph/0.94.nix

14 lines
326 B
Nix
Raw Normal View History

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