3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/filesystems/ceph/0.94.nix

14 lines
326 B
Nix
Raw Normal View History

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-06-25 02:25:53 +01:00
version = "0.94.2";
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
2015-06-25 02:25:53 +01:00
sha256 = "1nhqzmxv7bz93b8rbd88wgmw9icm2lhmc94dfscgh23kfpipyd6l";
};
2015-04-21 22:57:48 +01:00
patches = [ ./fix-pgrefdebugging.patch ];
})