summary refs log blame commit diff
path: root/pkgs/tools/backup/zbackup/default.nix
blob: 491443e79d7d8766f2992d59d766f81b1cc64ab5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                 
{ stdenv, fetchurl, cmake, zlib, openssl, protobuf, protobufc, lzo, libunwind } :
stdenv.mkDerivation rec {
  name = "zbackup-${version}";
  version = "1.4.4";
  src = fetchurl {
    url = "https://github.com/zbackup/zbackup/archive/1.4.4.tar.gz";
    sha256 = "11csla7n44lg7x6yqg9frb21vnkr8cvnh6ardibr3nj5l39crk7g";
  };
  buildInputs = [ zlib openssl protobuf lzo libunwind ];
  nativeBuildInputs = [ cmake protobufc ];
  meta = {
    description = "A versatile deduplicating backup tool";
    homepage = "http://zbackup.org/";
    meta.platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.gpl2Plus;
  };
}