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

15 lines
367 B
Nix
Raw Normal View History

2015-07-23 23:15:02 +01:00
{ callPackage, fetchgit, ... } @ args:
2015-04-22 20:34:50 +01:00
callPackage ./generic.nix (args // rec {
2015-07-23 23:15:02 +01:00
version = "2015-07-23";
2015-04-22 20:34:50 +01:00
src = fetchgit {
url = "git://github.com/ceph/ceph.git";
2015-07-23 23:15:02 +01:00
rev = "f7bda9567d2a1acf015ab891eb5bb9ca0cdc8396";
leaveDotGit = true;
sha256 = "0z3i4aadyyklafm3lia8dg8l0wr3cvy53v3h7b533nm61lq07maf";
2015-04-22 20:34:50 +01:00
};
2015-07-16 01:46:45 +01:00
patches = [ ./fix-pythonpath.patch ];
2015-04-22 20:34:50 +01:00
})