about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-04 17:13:30 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-08-04 17:14:06 -0700
commit10d10b000a9e26d66376976468581eaa1d4120ac (patch)
treea61dec70c631af20bb0caea78f4cb53b4327e780 /pkgs/tools/filesystems/ceph
parent778ea838499d67a47355059bbc13bdee3cf54ffe (diff)
downloadnixlib-10d10b000a9e26d66376976468581eaa1d4120ac.tar
nixlib-10d10b000a9e26d66376976468581eaa1d4120ac.tar.gz
nixlib-10d10b000a9e26d66376976468581eaa1d4120ac.tar.bz2
nixlib-10d10b000a9e26d66376976468581eaa1d4120ac.tar.lz
nixlib-10d10b000a9e26d66376976468581eaa1d4120ac.tar.xz
nixlib-10d10b000a9e26d66376976468581eaa1d4120ac.tar.zst
nixlib-10d10b000a9e26d66376976468581eaa1d4120ac.zip
ceph: Add 0.94 pre
Diffstat (limited to 'pkgs/tools/filesystems/ceph')
-rw-r--r--pkgs/tools/filesystems/ceph/0.94-pre.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/ceph/0.94-pre.nix b/pkgs/tools/filesystems/ceph/0.94-pre.nix
new file mode 100644
index 000000000000..e496dcccd825
--- /dev/null
+++ b/pkgs/tools/filesystems/ceph/0.94-pre.nix
@@ -0,0 +1,13 @@
+{ callPackage, fetchgit, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  version = "0.94.3";
+
+  src = fetchgit {
+    url = "https://github.com/ceph/ceph.git";
+    rev = "c19b0fc1aa2834ae3027b07a02aebe9639fc2ca7";
+    sha256 = "1h1y5jh2bszia622rmwdblb3cpkpd0mijahkaiasr30jwpkmzh0i";
+  };
+
+  patches = [ ./fix-pgrefdebugging.patch ];
+})