bd43449a2d
Semi-automatic update. These checks were done: - built on NixOS - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bpluginfo -h` got 0 exit code - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bpluginfo --help` got 0 exit code - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bpluginfo -V` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bpluginfo --version` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bpluginfo -h` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bpluginfo --help` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto -h` got 0 exit code - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto --help` got 0 exit code - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto help` got 0 exit code - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto -V` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto --version` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto -h` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/bscrypto --help` and found version 17.2.5 - ran `/nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5/bin/testls help` got 0 exit code - found 17.2.5 with grep in /nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5 - found 17.2.5 in filename of file in /nix/store/ayjbl5v8ng7fdzcjv93c7n5lax2q03hm-bareos-17.2.5
83 lines
2.9 KiB
Nix
83 lines
2.9 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, libtool, flex
|
|
, readline ? null, openssl ? null, python2 ? null, ncurses ? null, rocksdb
|
|
, sqlite ? null, postgresql ? null, mysql ? null, zlib ? null, lzo ? null
|
|
, jansson ? null, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
|
|
}:
|
|
|
|
assert sqlite != null || postgresql != null || mysql != null;
|
|
|
|
with stdenv.lib;
|
|
let
|
|
withGlusterfs = "\${with_glusterfs_directory}";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "bareos-${version}";
|
|
version = "17.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bareos";
|
|
repo = "bareos";
|
|
rev = "Release/${version}";
|
|
name = "${name}-src";
|
|
sha256 = "1mgh25lhd05m26sq1sj5ir2b4n7560x93ib25cvf9vmmypm1c7pn";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
nettools gettext readline openssl python2 flex ncurses sqlite postgresql
|
|
mysql.connector-c zlib lzo jansson acl glusterfs libceph libcap rocksdb
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i 's,\(-I${withGlusterfs}/include\),\1/glusterfs,' configure
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--exec-prefix=\${out}"
|
|
"--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"
|
|
"--enable-ndmp"
|
|
"--enable-lmdb"
|
|
"--enable-batch-insert"
|
|
"--enable-dynamic-cats-backends"
|
|
"--enable-sql-pooling"
|
|
"--enable-scsi-crypto"
|
|
] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline.dev}" ]
|
|
++ optional (python2 != null) "--with-python=${python2}"
|
|
++ optional (openssl != null) "--with-openssl=${openssl.dev}"
|
|
++ optional (sqlite != null) "--with-sqlite3=${sqlite.dev}"
|
|
++ optional (postgresql != null) "--with-postgresql=${postgresql}"
|
|
++ optional (mysql != null) "--with-mysql=${mysql.connector-c}"
|
|
++ optional (zlib != null) "--with-zlib=${zlib.dev}"
|
|
++ optional (lzo != null) "--with-lzo=${lzo}"
|
|
++ optional (jansson != null) "--with-jansson=${jansson}"
|
|
++ optional (acl != null) "--enable-acl"
|
|
++ optional (glusterfs != null) "--with-glusterfs=${glusterfs}"
|
|
++ optional (libceph != null) "--with-cephfs=${libceph}";
|
|
|
|
installFlags = [
|
|
"sysconfdir=\${out}/etc"
|
|
"confdir=\${out}/etc/bareos"
|
|
"scriptdir=\${out}/etc/bareos"
|
|
"working_dir=\${TMPDIR}"
|
|
"log_dir=\${TMPDIR}"
|
|
"sbindir=\${out}/bin"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.bareos.org/;
|
|
description = "A fork of the bacula project";
|
|
license = licenses.agpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|