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

14 lines
343 B
Nix
Raw Normal View History

2015-07-23 22:15:02 +00:00
{ callPackage, fetchgit, ... } @ args:
2015-04-22 19:34:50 +00:00
callPackage ./generic.nix (args // rec {
2015-09-11 22:06:19 +00:00
version = "2015-09-11";
2015-04-22 19:34:50 +00:00
src = fetchgit {
2015-08-07 21:18:26 +00:00
url = "git://github.com/ceph/ceph.git";
2015-09-11 22:06:19 +00:00
rev = "78de6fd61d5c0422f18c2f683b2cc489f3cbb4d3";
sha256 = "1kbrsr6vzvprcdq0hg7cgcmvqc61w3i1yzgrmjdmy3jcsmc979xi";
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
})