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

17 lines
372 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}";
2015-06-24 18:34:07 -07:00
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-04-20 12:01:40 -07:00
})