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

14 lines
343 B
Nix
Raw Normal View History

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