urbackup-client: init at 2.4.11 (#140504)

Co-authored-by: Ryan Burns <52847440+r-burns@users.noreply.github.com>

authored by

Merlin Göttlinger
Ryan Burns
and committed by
GitHub
5274c92d e5e3f877

+25
+23
pkgs/applications/backup/urbackup-client/default.nix
··· 1 + { stdenv, lib, fetchzip, wxGTK30, zlib, zstd }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "urbackup-client"; 5 + version = "2.4.11"; 6 + 7 + src = fetchzip { 8 + url = "https://hndl.urbackup.org/Client/${version}/urbackup-client-${version}.tar.gz"; 9 + sha256 = "0cciy9v1pxj9qaklpbhp2d5rdbkmfm74vhpqx6b4phww0f10wvzh"; 10 + }; 11 + 12 + configureFlags = [ "--enable-embedded-cryptopp" ]; 13 + buildInputs = [ wxGTK30 zlib zstd ]; 14 + 15 + meta = with lib; { 16 + description = "An easy to setup Open Source client/server backup system"; 17 + longDescription = "An easy to setup Open Source client/server backup system, that through a combination of image and file backups accomplishes both data safety and a fast restoration time"; 18 + homepage = "https://www.urbackup.org/index.html"; 19 + license = licenses.agpl3; 20 + platforms = platforms.linux; 21 + maintainers = [ maintainers.mgttlinger ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 12951 12951 icu = icu67; 12952 12952 }; 12953 12953 12954 + urbackup-client = callPackage ../applications/backup/urbackup-client { }; 12955 + 12954 12956 vlang = callPackage ../development/compilers/vlang { }; 12955 12957 12956 12958 vala-lint = callPackage ../development/tools/vala-lint { };