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

18 lines
378 B
Nix
Raw Normal View History

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-06-25 03:25:53 +02:00
version = "0.94.2";
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
2015-07-24 00:14:50 +02:00
leaveDotGit = true;
sha256 = "094f9knxgx8vb9fb1yzld9ib4m0wpqwqgqjl3xqf0dzm48nxqd73";
};
2015-04-21 23:57:48 +02:00
2015-07-18 05:39:12 +02:00
patches = [
./fix-pgrefdebugging.patch
./boost-158.patch
];
})