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

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

  src = fetchgit {
    url = "git://github.com/ceph/ceph.git";
    rev = "refs/tags/v${version}";
    leaveDotGit = true;
    sha256 = "0s81j6yj8y27hlx1hid9maz0l7bhjjskjxzxlhsikzmdc1j27m4r";
  };

  patches = [
    ./0001-Cleanup-boost-optionals.patch
    ./fix-pgrefdebugging.patch
  ];
})