2015-07-24 00:15:02 +02:00
|
|
|
{ callPackage, fetchgit, ... } @ args:
|
2015-04-22 21:34:50 +02:00
|
|
|
|
|
|
|
callPackage ./generic.nix (args // rec {
|
2015-08-30 19:56:15 +02:00
|
|
|
version = "2015-08-29";
|
2015-04-22 21:34:50 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
2015-08-07 23:18:26 +02:00
|
|
|
url = "git://github.com/ceph/ceph.git";
|
2015-08-30 19:56:15 +02:00
|
|
|
rev = "54626351679fe312d5b96cc0304755ae5f1ece40";
|
|
|
|
sha256 = "12rdp1q7arxhg259y08pzix22yjlrjs5qmwv342qcl5xbfkg502r";
|
2015-04-22 21:34:50 +02:00
|
|
|
};
|
2015-07-16 02:46:45 +02:00
|
|
|
|
|
|
|
patches = [ ./fix-pythonpath.patch ];
|
2015-04-22 21:34:50 +02:00
|
|
|
})
|