summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-07 14:18:26 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-08-07 14:18:39 -0700
commit2f620f57675f3117b013d9e4ef51adab73b049fa (patch)
tree5fc0d708148aef401968f396f8c4878bd29f1eb6
parent3dbfcdc3d4148f4094bcd50973b8008f62c0c6c2 (diff)
downloadnixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.tar
nixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.tar.gz
nixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.tar.bz2
nixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.tar.lz
nixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.tar.xz
nixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.tar.zst
nixlib-2f620f57675f3117b013d9e4ef51adab73b049fa.zip
ceph-git: 2015-08-05 -> 2015-08-07
-rw-r--r--pkgs/tools/filesystems/ceph/generic.nix1
-rw-r--r--pkgs/tools/filesystems/ceph/git.nix8
2 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/ceph/generic.nix b/pkgs/tools/filesystems/ceph/generic.nix
index 8b9cefdbf239..77d24766f133 100644
--- a/pkgs/tools/filesystems/ceph/generic.nix
+++ b/pkgs/tools/filesystems/ceph/generic.nix
@@ -213,6 +213,7 @@ stdenv.mkDerivation {
     (mkWith   true                         "rgw-user"             "rgw")
     (mkWith   true                         "rgw-group"            "rgw")
     (mkWith   true                         "systemd-unit-dir"     "\${out}/etc/systemd/system")
+    (mkWith   false                        "selinux"              null)  # TODO: Implement
   ];
 
   preBuild = optionalString (versionAtLeast version "9.0.0") ''
diff --git a/pkgs/tools/filesystems/ceph/git.nix b/pkgs/tools/filesystems/ceph/git.nix
index 9343d2cdf332..c71ad1342223 100644
--- a/pkgs/tools/filesystems/ceph/git.nix
+++ b/pkgs/tools/filesystems/ceph/git.nix
@@ -1,12 +1,12 @@
 { callPackage, fetchgit, ... } @ args:
 
 callPackage ./generic.nix (args // rec {
-  version = "2015-08-05";
+  version = "2015-08-07";
 
   src = fetchgit {
-    url = "git://github.com/wkennington/ceph.git";
-    rev = "043a780feb973b7ad571bb696437476da3260133";
-    sha256 = "02kk24wm6mxsclklsz5zzpj3wm6f341blj2anx3v5x20cixzdnhp";
+    url = "git://github.com/ceph/ceph.git";
+    rev = "dcd6e96495d949066962d1c7e18a9d4188b0fa37";
+    sha256 = "1w62xfbcdx2q5wjz2bqlhn4bb1iag8xyhgjc2nklqk7py9lif16m";
   };
 
   patches = [ ./fix-pythonpath.patch ];