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

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

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

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