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

14 lines
348 B
Nix
Raw Normal View History

2015-04-22 19:34:50 +00:00
{ callPackage, fetchgit, git, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-07-21 01:07:06 +00:00
version = "2015-07-20";
2015-04-22 19:34:50 +00:00
src = fetchgit {
url = "git://github.com/ceph/ceph.git";
2015-07-21 01:07:06 +00:00
rev = "ce534e1e0addfe93194a553cec98799ea97affe4";
sha256 = "19i9fp06fdyhx5x6ryw5q81id0354601yxnywvir3i9hy51p9xaz";
2015-04-22 19:34:50 +00:00
};
2015-07-16 00:46:45 +00:00
patches = [ ./fix-pythonpath.patch ];
2015-04-22 19:34:50 +00:00
})