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

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

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