2013-09-06 01:33:28 +01:00
|
|
|
{ stdenv, fetchurl, sqlite, postgresql, zlib, acl, ncurses, openssl, readline }:
|
2011-08-05 20:18:02 +01:00
|
|
|
|
2013-02-22 20:24:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-27 14:12:54 +00:00
|
|
|
name = "bacula-9.4.1";
|
2011-08-05 20:18:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-09-06 01:33:28 +01:00
|
|
|
url = "mirror://sourceforge/bacula/${name}.tar.gz";
|
2018-12-27 14:12:54 +00:00
|
|
|
sha256 = "0hpxk0f81yx4p1xndsjbwnj7hvvplqlgrw74gv1scq6krabn2pvb";
|
2011-08-05 20:18:02 +01:00
|
|
|
};
|
|
|
|
|
2013-09-06 01:33:28 +01:00
|
|
|
buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
|
|
|
|
# acl relies on attr, which I can't get to build on darwin
|
|
|
|
++ stdenv.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"
|
|
|
|
];
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2013-09-06 01:33:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-08-05 20:18:02 +01:00
|
|
|
description = "Enterprise ready, Network Backup Tool";
|
2013-09-06 01:33:28 +01:00
|
|
|
homepage = http://bacula.org/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
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
|
|
|
};
|
|
|
|
}
|