3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/backup/bacula/default.nix
Bjørn Forsman 2c4d695a1b bacula: fix version mismatch between name and src attribute
Commit 207443b184 ("upgrade bacula")
updated the backula version in the src attribute but forgot to update
the version number in the name attribute.
2013-02-22 21:05:40 +01:00

21 lines
521 B
Nix

{stdenv, fetchurl, sqlite, zlib, acl, ncurses, openssl, readline}:
stdenv.mkDerivation {
name = "bacula-5.2.13";
src = fetchurl {
url = mirror://sourceforge/bacula/bacula-5.2.13.tar.gz;
sha256 = "1n3sc0kd7r0afpyi708y3md0a24rbldnfcdz0syqj600pxcd9gm4";
};
buildInputs = [ sqlite zlib acl ncurses openssl readline ];
configureFlags = [ "--with-sqlite3=${sqlite}" ];
meta = {
description = "Enterprise ready, Network Backup Tool";
homepage = http://bacula.org/;
license = "GPLv2";
};
}