1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/filesystems/ceph/git.nix
2015-08-07 14:18:39 -07:00

14 lines
343 B
Nix

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "2015-08-07";
src = fetchgit {
url = "git://github.com/ceph/ceph.git";
rev = "dcd6e96495d949066962d1c7e18a9d4188b0fa37";
sha256 = "1w62xfbcdx2q5wjz2bqlhn4bb1iag8xyhgjc2nklqk7py9lif16m";
};
patches = [ ./fix-pythonpath.patch ];
})