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

14 lines
343 B
Nix
Raw Normal View History

2015-07-23 15:15:02 -07:00
{ callPackage, fetchgit, ... } @ args:
2015-04-22 12:34:50 -07:00
callPackage ./generic.nix (args // rec {
2015-09-04 11:42:19 -07:00
version = "2015-09-04";
2015-04-22 12:34:50 -07:00
src = fetchgit {
2015-08-07 14:18:26 -07:00
url = "git://github.com/ceph/ceph.git";
2015-09-04 11:42:19 -07:00
rev = "8c17e0197481205f8726b06d57313ffe08fba2bf";
sha256 = "189l412m6x0f0mqzhgzwfa3sgm5xfxzb9synlvbfm3n1fgdhj5iy";
2015-04-22 12:34:50 -07:00
};
2015-07-15 17:46:45 -07:00
patches = [ ./fix-pythonpath.patch ];
2015-04-22 12:34:50 -07:00
})