2011-08-05 12:18:02 -07:00
|
|
|
{stdenv, fetchurl, sqlite, zlib, acl, ncurses, openssl, readline}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-02-22 12:05:40 -08:00
|
|
|
name = "bacula-5.2.13";
|
2011-08-05 12:18:02 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-21 12:18:26 -08:00
|
|
|
url = mirror://sourceforge/bacula/bacula-5.2.13.tar.gz;
|
|
|
|
sha256 = "1n3sc0kd7r0afpyi708y3md0a24rbldnfcdz0syqj600pxcd9gm4";
|
2011-08-05 12:18:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ sqlite zlib acl ncurses openssl readline ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-sqlite3=${sqlite}" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Enterprise ready, Network Backup Tool";
|
|
|
|
homepage = http://bacula.org/;
|
|
|
|
license = "GPLv2";
|
|
|
|
};
|
|
|
|
}
|