1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/filesystems/ceph/git.nix
2015-08-18 14:45:11 -07:00

14 lines
343 B
Nix

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