nixpkgs/pkgs/tools/filesystems/ceph/0.94.nix
William A. Kennington III 86ba275a99 ceph: 0.94.4 -> 0.94.5
2015-11-04 00:58:28 -08:00

14 lines
326 B
Nix

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