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