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