summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph/0.94.nix
blob: f564e28c5a3bf3dfd78607379ab1f223b5b067b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, fetchgit, ... } @ args:

callPackage ./generic.nix (args // rec {
  version = "0.94.3";

  src = fetchgit {
    url = "https://github.com/ceph/ceph.git";
    rev = "refs/tags/v${version}";
    sha256 = "020khb9978wayi4jnx7f9g1fzfg3r2xn9qw66snpd3k8w2dmycxy";
  };

  patches = [ ./fix-pgrefdebugging.patch ];
})