summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph/0.94.nix
blob: 90c23665508c3244d0af929b0470379f5ffa0c50 (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.1.2";

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

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