summary refs log tree commit diff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-22 16:01:50 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-22 16:01:50 -0700
commit88b8333750a2eeab08795107335688bcc49cc2b6 (patch)
tree75fba08318bdb3430a0b21a51a065ca972896a37 /pkgs/tools/backup
parentb8f33f11475090e84c14c25ecc5f56ebefb87704 (diff)
downloadnixlib-88b8333750a2eeab08795107335688bcc49cc2b6.tar
nixlib-88b8333750a2eeab08795107335688bcc49cc2b6.tar.gz
nixlib-88b8333750a2eeab08795107335688bcc49cc2b6.tar.bz2
nixlib-88b8333750a2eeab08795107335688bcc49cc2b6.tar.lz
nixlib-88b8333750a2eeab08795107335688bcc49cc2b6.tar.xz
nixlib-88b8333750a2eeab08795107335688bcc49cc2b6.tar.zst
nixlib-88b8333750a2eeab08795107335688bcc49cc2b6.zip
bareos: Correctly fix libceph
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/bareos/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/backup/bareos/default.nix b/pkgs/tools/backup/bareos/default.nix
index 9b3926fccbaa..9994030ada99 100644
--- a/pkgs/tools/backup/bareos/default.nix
+++ b/pkgs/tools/backup/bareos/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, libtool
 , readline ? null, openssl ? null, python ? null, ncurses ? null
 , sqlite ? null, postgresql ? null, mysql ? null, zlib ? null, lzo ? null
-, acl ? null, glusterfs ? null, libceph ? null, libcap ? null, ceph ? null
+, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
 }:
 
 assert sqlite != null || postgresql != null || mysql != null;
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
     ++ optional (lzo != null) "--with-lzo=${lzo}"
     ++ optional (acl != null) "--enable-acl"
     ++ optional (glusterfs != null) "--with-glusterfs=${glusterfs}"
-    ++ optional (ceph != null) "--with-cephfs=${ceph}";
+    ++ optional (libceph != null) "--with-cephfs=${libceph}";
 
   installFlags = [
     "sysconfdir=\${out}/etc"