nixpkgs/pkgs/tools/backup/bareos/default.nix

83 lines
2.8 KiB
Nix
Raw Normal View History

2015-07-13 11:43:11 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, libtool, flex
2015-03-28 06:46:47 +00:00
, 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-09-18 21:52:43 +00:00
, jansson ? null, 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-09-18 21:52:43 +00:00
version = "15.2.1";
2014-11-04 18:54:25 +00:00
src = fetchFromGitHub {
owner = "bareos";
repo = "bareos";
rev = "Release/${version}";
name = "${name}-src";
2015-09-18 21:52:43 +00:00
sha256 = "01vnqahzjj598jjk4y7qzfnq415jh227v40sgkrdl4qcpn76spxi";
2014-11-04 18:54:25 +00:00
};
2015-09-18 21:52:43 +00:00
nativeBuildInputs = [ pkgconfig ];
2014-11-04 18:54:25 +00:00
buildInputs = [
2015-09-18 21:52:43 +00:00
nettools gettext readline openssl python flex ncurses sqlite postgresql
libmysql zlib lzo jansson 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}"
2015-09-18 21:52:43 +00:00
++ optional (jansson != null) "--with-jansson=${jansson}"
2015-03-28 06:46:47 +00:00
++ 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"
2015-09-18 21:52:43 +00:00
"confdir=\${out}/etc/bareos"
"scriptdir=\${out}/etc/bareos"
2015-04-05 05:11:45 +00:00
"working_dir=\${TMPDIR}"
"log_dir=\${TMPDIR}"
2015-07-13 11:43:11 +00:00
"sbindir=\${out}/bin"
2015-04-05 05:11:45 +00:00
];
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 ];
};
}