summary refs log tree commit diff
path: root/pkgs/tools/backup/bareos
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:46:17 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:03:35 +0200
commit8d473f107c8d9f0c43986765304faf75f5e49b5a (patch)
treedfe9689e2400e0c837a71dc413f27419dc8cff07 /pkgs/tools/backup/bareos
parente0de3b1dc512a1ec9c2be49d4a081482fb505838 (diff)
downloadnixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar
nixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.gz
nixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.bz2
nixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.lz
nixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.xz
nixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.zst
nixpkgs-8d473f107c8d9f0c43986765304faf75f5e49b5a.zip
treewide: Make explicit that 'dev' output of readline is used
Diffstat (limited to 'pkgs/tools/backup/bareos')
-rw-r--r--pkgs/tools/backup/bareos/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/backup/bareos/default.nix b/pkgs/tools/backup/bareos/default.nix
index 0b40fea14d9..d28c63fdcd8 100644
--- a/pkgs/tools/backup/bareos/default.nix
+++ b/pkgs/tools/backup/bareos/default.nix
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
     "--enable-dynamic-cats-backends"
     "--enable-sql-pooling"
     "--enable-scsi-crypto"
-  ] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline}" ]
+  ] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline.dev}" ]
     ++ optional (python != null) "--with-python=${python}"
     ++ optional (openssl != null) "--with-openssl=${openssl.dev}"
     ++ optional (sqlite != null) "--with-sqlite3=${sqlite}"