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

83 lines
2.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, flex
2016-11-09 11:11:09 +01:00
, readline ? null, openssl ? null, python2 ? null, ncurses ? null, rocksdb
, sqlite ? null, postgresql ? null, libmysqlclient ? null, zlib ? null, lzo ? null
2015-09-18 23:52:43 +02:00
, jansson ? null, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
2014-11-04 19:54:25 +01:00
}:
assert sqlite != null || postgresql != null || libmysqlclient != null;
2014-11-04 19:54:25 +01:00
with stdenv.lib;
2015-03-28 07:46:47 +01:00
let
withGlusterfs = "\${with_glusterfs_directory}";
in
2014-11-04 19:54:25 +01:00
stdenv.mkDerivation rec {
pname = "bareos";
version = "17.2.7";
2014-11-04 19:54:25 +01:00
src = fetchFromGitHub {
owner = "bareos";
repo = "bareos";
rev = "Release/${version}";
name = "${pname}-${version}-src";
sha256 = "1awf5i4mw2nfd7z0dmqnywapnx9nz6xwqv8rxp0y2mnrhzdpbrbz";
2014-11-04 19:54:25 +01:00
};
2015-09-18 23:52:43 +02:00
nativeBuildInputs = [ pkgconfig ];
2014-11-04 19:54:25 +01:00
buildInputs = [
2016-11-09 11:11:09 +01:00
nettools gettext readline openssl python2 flex ncurses sqlite postgresql
libmysqlclient zlib lzo jansson acl glusterfs libceph libcap rocksdb
2014-11-04 19:54:25 +01:00
];
2015-03-28 07:46:47 +01:00
postPatch = ''
sed -i 's,\(-I${withGlusterfs}/include\),\1/glusterfs,' configure
'';
2014-11-04 19:54:25 +01:00
configureFlags = [
2015-03-28 07:46:47 +01:00
"--sysconfdir=/etc"
2014-11-04 19:54:25 +01:00
"--exec-prefix=\${out}"
2015-03-28 07:46:47 +01: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"
2018-12-19 22:54:12 +01:00
"--with-pid-dir=/run/bareos"
"--with-subsys-dir=/run/bareos"
2014-11-04 19:54:25 +01:00
"--enable-ndmp"
"--enable-lmdb"
2015-03-28 07:46:47 +01:00
"--enable-batch-insert"
"--enable-dynamic-cats-backends"
"--enable-sql-pooling"
"--enable-scsi-crypto"
] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline.dev}" ]
2016-11-09 11:11:09 +01:00
++ optional (python2 != null) "--with-python=${python2}"
++ optional (openssl != null) "--with-openssl=${openssl.dev}"
++ optional (sqlite != null) "--with-sqlite3=${sqlite.dev}"
2014-11-04 19:54:25 +01:00
++ optional (postgresql != null) "--with-postgresql=${postgresql}"
++ optional (libmysqlclient != null) "--with-mysql=${libmysqlclient}"
++ optional (zlib != null) "--with-zlib=${zlib.dev}"
2015-03-28 07:46:47 +01:00
++ optional (lzo != null) "--with-lzo=${lzo}"
2015-09-18 23:52:43 +02:00
++ optional (jansson != null) "--with-jansson=${jansson}"
2015-03-28 07:46:47 +01:00
++ optional (acl != null) "--enable-acl"
++ optional (glusterfs != null) "--with-glusterfs=${glusterfs}"
2015-04-23 01:01:50 +02:00
++ optional (libceph != null) "--with-cephfs=${libceph}";
2015-03-28 07:46:47 +01:00
2015-04-05 07:11:45 +02:00
installFlags = [
"sysconfdir=\${out}/etc"
2015-09-18 23:52:43 +02:00
"confdir=\${out}/etc/bareos"
"scriptdir=\${out}/etc/bareos"
2015-04-05 07:11:45 +02:00
"working_dir=\${TMPDIR}"
"log_dir=\${TMPDIR}"
2015-07-13 13:43:11 +02:00
"sbindir=\${out}/bin"
2015-04-05 07:11:45 +02:00
];
2014-11-04 19:54:25 +01:00
meta = with stdenv.lib; {
homepage = "http://www.bareos.org/";
2015-04-28 10:54:58 +02:00
description = "A fork of the bacula project";
2014-11-04 19:54:25 +01:00
license = licenses.agpl3;
platforms = platforms.unix;
broken = true;
2014-11-04 19:54:25 +01:00
};
}