about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph/0.94-pre.nix
blob: e496dcccd825c0c21369b806fae2d6ce00df6c31 (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 = "c19b0fc1aa2834ae3027b07a02aebe9639fc2ca7";
    sha256 = "1h1y5jh2bszia622rmwdblb3cpkpd0mijahkaiasr30jwpkmzh0i";
  };

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