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

17 lines
372 B
Nix
Raw Normal View History

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