nixpkgs/pkgs/tools/filesystems/ceph/0.80.nix

18 lines
394 B
Nix
Raw Normal View History

2015-04-20 19:01:40 +00:00
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-06-25 01:34:07 +00:00
version = "0.80.10";
2015-04-20 19:01:40 +00:00
src = fetchgit {
url = "git://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
sha256 = "1arajccczjdqp7igs17569xlq5cj4azcm5wwixg6ryypjr2grcbl";
2015-04-20 19:01:40 +00:00
};
2015-04-21 21:57:48 +00:00
patches = [
./0001-Cleanup-boost-optionals.patch
./fix-pgrefdebugging.patch
2015-07-18 03:39:12 +00:00
./boost-158.patch
2015-04-21 21:57:48 +00:00
];
2015-04-20 19:01:40 +00:00
})