2011-08-05 12:18:02 -07:00
|
|
|
{stdenv, fetchurl, sqlite, zlib, acl, ncurses, openssl, readline}:
|
|
|
|
|
2013-02-22 12:24:20 -08:00
|
|
|
stdenv.mkDerivation rec {
|
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-22 12:24:20 -08:00
|
|
|
url = "mirror://sourceforge/bacula/${name}.tar.gz";
|
2013-02-21 12:18:26 -08:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|