nixpkgs/pkgs/tools/filesystems/ceph/0.94.nix
William A. Kennington III 6d83b13734 ceph: 0.94.2 -> 0.94.3
2015-08-28 17:49:03 -07:00

14 lines
326 B
Nix

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "0.94.3";
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
sha256 = "020khb9978wayi4jnx7f9g1fzfg3r2xn9qw66snpd3k8w2dmycxy";
};
patches = [ ./fix-pgrefdebugging.patch ];
})