summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-12-27 14:43:54 +0100
committerfreezeboy <freezeboy@users.noreply.github.com>2020-12-28 14:31:12 +0100
commitb66f058803e2767f33f8e78bb4d8d72c2002c126 (patch)
tree522e7d827290d933dbbff2fd2e1824d791b47fa5 /pkgs/tools/backup
parentf71e439688e4c4b231e0f419f81df6610fdaa231 (diff)
bacula: 9.6.6 -> 11.0.0
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/bacula/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/backup/bacula/default.nix b/pkgs/tools/backup/bacula/default.nix
index 823fd000aee3..818c866390a2 100644
--- a/pkgs/tools/backup/bacula/default.nix
+++ b/pkgs/tools/backup/bacula/default.nix
@@ -3,11 +3,12 @@
}:
stdenv.mkDerivation rec {
- name = "bacula-9.6.6";
+ pname = "bacula";
+ version = "11.0.0";
src = fetchurl {
- url = "mirror://sourceforge/bacula/${name}.tar.gz";
- sha256 = "10c25igfvff09nz5ll8rxc46f659rnwimj1v9cdhr67lwdswk1k2";
+ url = "mirror://sourceforge/bacula/${pname}-${version}.tar.gz";
+ sha256 = "JmBTwI/wUEytkhu0SYbTX6/dDQG6xvN2odEYTVpztok=";
};
buildInputs = [ postgresql sqlite zlib ncurses openssl readline ]
@@ -39,7 +40,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Enterprise ready, Network Backup Tool";
homepage = "http://bacula.org/";
- license = licenses.gpl2;
+ license = with licenses; [ agpl3Only bsd2 ];
maintainers = with maintainers; [ domenkozar lovek323 eleanor ];
platforms = platforms.all;
};