2015-03-28 06:46:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, libtool
|
|
|
|
, readline ? null, openssl ? null, python ? null, ncurses ? null
|
2015-04-22 23:03:20 +00:00
|
|
|
, sqlite ? null, postgresql ? null, libmysql ? null, zlib ? null, lzo ? null
|
2015-04-22 23:01:50 +00:00
|
|
|
, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
|
2014-11-04 18:54:25 +00:00
|
|
|
}:
|
|
|
|
|
2015-04-22 23:03:20 +00:00
|
|
|
assert sqlite != null || postgresql != null || libmysql != null;
|
2014-11-04 18:54:25 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2015-03-28 06:46:47 +00:00
|
|
|
let
|
|
|
|
withGlusterfs = "\${with_glusterfs_directory}";
|
|
|
|
in
|
2014-11-04 18:54:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bareos-${version}";
|
2015-03-28 06:46:47 +00:00
|
|
|
version = "14.2.4";
|
2014-11-04 18:54:25 +00:00
|
|
|
|
2015-01-14 16:38:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bareos";
|
|
|
|
repo = "bareos";
|
|
|
|
rev = "Release/${version}";
|
|
|
|
name = "${name}-src";
|
2015-03-28 06:46:47 +00:00
|
|
|
sha256 = "0shb91pawdgrn6rb4np3zyyxv36899nvwf8jaihkg0wvb01viqzr";
|
2014-11-04 18:54:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig nettools gettext readline openssl python
|
2015-04-22 23:03:20 +00:00
|
|
|
ncurses sqlite postgresql libmysql zlib lzo acl glusterfs libceph libcap
|
2014-11-04 18:54:25 +00:00
|
|
|
];
|
|
|
|
|
2015-03-28 06:46:47 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -i 's,\(-I${withGlusterfs}/include\),\1/glusterfs,' configure
|
|
|
|
'';
|
|
|
|
|
2014-11-04 18:54:25 +00:00
|
|
|
configureFlags = [
|
2015-03-28 06:46:47 +00:00
|
|
|
"--sysconfdir=/etc"
|
2014-11-04 18:54:25 +00:00
|
|
|
"--exec-prefix=\${out}"
|
2015-03-28 06:46:47 +00:00
|
|
|
"--enable-lockmgr"
|
|
|
|
"--enable-dynamic-storage-backends"
|
|
|
|
"--with-basename=nixos" # For reproducible builds since it uses the hostname otherwise
|
|
|
|
"--with-hostname=nixos" # For reproducible builds since it uses the hostname otherwise
|
|
|
|
"--with-working-dir=/var/lib/bareos"
|
|
|
|
"--with-bsrdir=/var/lib/bareos"
|
|
|
|
"--with-logdir=/var/log/bareos"
|
|
|
|
"--with-pid-dir=/var/run/bareos"
|
|
|
|
"--with-subsys-dir=/var/run/bareos"
|
2014-11-04 18:54:25 +00:00
|
|
|
"--enable-ndmp"
|
|
|
|
"--enable-lmdb"
|
2015-03-28 06:46:47 +00:00
|
|
|
"--enable-batch-insert"
|
|
|
|
"--enable-dynamic-cats-backends"
|
|
|
|
"--enable-sql-pooling"
|
|
|
|
"--enable-scsi-crypto"
|
|
|
|
] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline}" ]
|
|
|
|
++ optional (python != null) "--with-python=${python}"
|
|
|
|
++ optional (openssl != null) "--with-openssl=${openssl}"
|
|
|
|
++ optional (sqlite != null) "--with-sqlite3=${sqlite}"
|
2014-11-04 18:54:25 +00:00
|
|
|
++ optional (postgresql != null) "--with-postgresql=${postgresql}"
|
2015-04-22 23:03:20 +00:00
|
|
|
++ optional (libmysql != null) "--with-mysql=${libmysql}"
|
2015-03-28 06:46:47 +00:00
|
|
|
++ optional (zlib != null) "--with-zlib=${zlib}"
|
|
|
|
++ optional (lzo != null) "--with-lzo=${lzo}"
|
|
|
|
++ optional (acl != null) "--enable-acl"
|
|
|
|
++ optional (glusterfs != null) "--with-glusterfs=${glusterfs}"
|
2015-04-22 23:01:50 +00:00
|
|
|
++ optional (libceph != null) "--with-cephfs=${libceph}";
|
2015-03-28 06:46:47 +00:00
|
|
|
|
2015-04-05 05:11:45 +00:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"working_dir=\${TMPDIR}"
|
|
|
|
"log_dir=\${TMPDIR}"
|
|
|
|
];
|
2014-11-04 18:54:25 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.bareos.org/;
|
2015-04-28 08:54:58 +00:00
|
|
|
description = "A fork of the bacula project";
|
2014-11-04 18:54:25 +00:00
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|