summary refs log tree commit diff
path: root/pkgs/tools/backup/bareos
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-21 15:05:00 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-21 20:59:42 -0700
commit7761112e37b001d33148c36e0226d3b99f0367a9 (patch)
treefd054f28354ca8445ae58c4273df2c4669298e6b /pkgs/tools/backup/bareos
parent83c781f6fedbdc3dc6710bba356240845946d4ce (diff)
downloadnixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.tar
nixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.tar.gz
nixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.tar.bz2
nixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.tar.lz
nixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.tar.xz
nixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.tar.zst
nixpkgs-7761112e37b001d33148c36e0226d3b99f0367a9.zip
Use some of the library shortcuts
Diffstat (limited to 'pkgs/tools/backup/bareos')
-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 55c84a1015f..8433a67c5c4 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, ceph ? null, libcap ? null
+, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
 }:
 
 assert sqlite != null || postgresql != null || mysql != null;
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [
     pkgconfig nettools gettext readline openssl python
-    ncurses sqlite postgresql mysql.lib zlib lzo acl glusterfs ceph libcap
+    ncurses sqlite postgresql mysql.lib zlib lzo acl glusterfs libceph libcap
   ];
 
   postPatch = ''