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

18 lines
394 B
Nix
Raw Normal View History

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