about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph/default.nix
blob: b5d62482bf519b434192380efc0226f17054e99c (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 = "0a2v3bgkrbkzardcw7ymlhhyjlwi08qmcm7g34y2sjsxk9bd78an";
  };

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