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

14 lines
321 B
Nix
Raw Normal View History

2015-06-25 02:25:53 +01:00
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-10-17 00:44:46 +01:00
version = "9.1.0";
2015-06-25 02:25:53 +01:00
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
2015-10-17 00:44:46 +01:00
sha256 = "1f8z0dxl945370ifz2ila9bc55d81h41bmdq241y9z4pvaynl6pz";
2015-06-25 02:25:53 +01:00
};
2015-07-16 01:46:31 +01:00
2015-10-17 00:44:46 +01:00
patches = [ ./fix-pythonpath.patch ];
2015-06-25 02:25:53 +01:00
})