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

17 lines
372 B
Nix
Raw Normal View History

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