about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/backup/zbackup/default.nix
blob: 021c85707a60916beb987a815cafefdae447ff95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, stdenv, fetchFromGitHub
, cmake, protobufc
, libunwind, lzo, openssl, protobuf, zlib
}:

stdenv.mkDerivation rec {
  pname = "zbackup";
  version = "1.4.4";

  src = fetchFromGitHub {
    owner = "zbackup";
    repo = "zbackup";
    rev = version;
    hash = "sha256-9Fk4EhEeQ2J4Kirc7oad4CzmW70Mmza6uozd87qfgZI=";
  };

  patches = [
    # compare with https://github.com/zbackup/zbackup/pull/158;
    # but that doesn't apply cleanly to this version
    ./protobuf-api-change.patch
  ];

  # zbackup uses dynamic exception specifications which are not
  # allowed in C++17
  env.NIX_CFLAGS_COMPILE = toString [ "--std=c++14" ];

  buildInputs = [ zlib openssl protobuf lzo libunwind ];
  nativeBuildInputs = [ cmake protobufc ];

  meta = {
    description = "A versatile deduplicating backup tool";
    homepage = "http://zbackup.org/";
    platforms = lib.platforms.linux;
    license = lib.licenses.gpl2Plus;
  };
}