nixpkgs/pkgs/tools/filesystems/ceph/9.nix
2015-11-05 18:22:48 -08:00

14 lines
321 B
Nix

{ 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 = "1f8z0dxl945370ifz2ila9bc55d81h41bmdq241y9z4pvaynl6pa";
};
patches = [ ./fix-pythonpath.patch ];
})