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

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

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