2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, sqlite, postgresql, zlib, acl, ncurses, openssl, readline
|
2020-10-25 05:04:37 +01:00
|
|
|
, CoreFoundation, IOKit
|
|
|
|
}:
|
2011-08-05 21:18:02 +02:00
|
|
|
|
2013-02-22 21:24:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-12-27 14:43:54 +01:00
|
|
|
pname = "bacula";
|
2021-02-09 23:13:04 +01:00
|
|
|
version = "11.0.1";
|
2011-08-05 21:18:02 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-27 14:43:54 +01:00
|
|
|
url = "mirror://sourceforge/bacula/${pname}-${version}.tar.gz";
|
2021-02-09 23:13:04 +01:00
|
|
|
sha256 = "sha256-Lr2c24hZU8A/Cd8xGA7rfqga67ghz0XJ/cs/z/hSlPU=";
|
2011-08-05 21:18:02 +02:00
|
|
|
};
|
|
|
|
|
2013-09-06 02:33:28 +02:00
|
|
|
buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
2020-10-25 05:04:37 +01:00
|
|
|
CoreFoundation
|
|
|
|
IOKit
|
|
|
|
]
|
2013-09-06 02:33:28 +02:00
|
|
|
# acl relies on attr, which I can't get to build on darwin
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optional (!stdenv.isDarwin) acl;
|
2011-08-05 21:18:02 +02:00
|
|
|
|
2018-03-19 10:26:46 +01:00
|
|
|
configureFlags = [
|
2016-04-16 19:47:23 +02:00
|
|
|
"--with-sqlite3=${sqlite.dev}"
|
2017-09-27 21:48:39 +02:00
|
|
|
"--with-postgresql=${postgresql}"
|
2018-03-19 10:26:46 +01:00
|
|
|
"--with-logdir=/var/log/bacula"
|
|
|
|
"--with-working-dir=/var/lib/bacula"
|
|
|
|
"--mandir=\${out}/share/man"
|
2021-01-15 10:19:50 +01:00
|
|
|
] ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "ac_cv_func_setpgrp_void=yes";
|
2018-03-19 10:26:46 +01:00
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"logdir=\${out}/logdir"
|
|
|
|
"working_dir=\${out}/workdir"
|
2013-03-22 01:53:41 +01:00
|
|
|
];
|
2011-08-05 21:18:02 +02:00
|
|
|
|
2013-03-27 02:24:55 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $out/sbin/* $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2011-08-05 21:18:02 +02:00
|
|
|
description = "Enterprise ready, Network Backup Tool";
|
2020-03-01 23:28:37 +01:00
|
|
|
homepage = "http://bacula.org/";
|
2020-12-27 14:43:54 +01:00
|
|
|
license = with licenses; [ agpl3Only bsd2 ];
|
2021-03-03 11:50:26 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 eleanor ];
|
2015-05-27 21:56:04 +02:00
|
|
|
platforms = platforms.all;
|
2011-08-05 21:18:02 +02:00
|
|
|
};
|
|
|
|
}
|