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

14 lines
321 B
Nix
Raw Normal View History

2015-06-25 04:25:53 +03:00
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-07-16 03:46:31 +03:00
version = "9.0.2";
2015-06-25 04:25:53 +03:00
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
sha256 = "0kydjyvb1566mh33p6dlljfx1r4cfdj8ic4i19h5r9vavkc46nf0";
2015-06-25 04:25:53 +03:00
};
2015-07-16 03:46:31 +03:00
patches = [ ./fix-pythonpath.patch ];
2015-06-25 04:25:53 +03:00
})