nixpkgs/pkgs/tools/backup/zbackup/default.nix

18 lines
602 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, cmake, zlib, openssl, protobuf, protobufc, lzo, libunwind } :
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "zbackup";
2015-10-02 22:34:49 +00:00
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/";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
2015-10-02 22:34:49 +00:00
};
}