lol
1{ callPackage, fetchgit, ... } @ args:
2
3callPackage ./generic.nix (args // rec {
4 version = "0.80.10";
5
6 src = fetchgit {
7 url = "git://github.com/ceph/ceph.git";
8 rev = "refs/tags/v${version}";
9 sha256 = "1arajccczjdqp7igs17569xlq5cj4azcm5wwixg6ryypjr2grcbl";
10 };
11
12 patches = [
13 ./0001-Cleanup-boost-optionals.patch
14 ./fix-pgrefdebugging.patch
15 ./boost-158.patch
16 ];
17})