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

86 lines
2.4 KiB
Nix
Raw Normal View History

2019-02-14 12:22:37 +00:00
{ stdenv, fetchpatch, python3, acl, libb2, lz4, zstd, openssl, openssh }:
2019-02-14 12:22:37 +00:00
let
python = python3.override {
packageOverrides = self: super: {
# https://github.com/borgbackup/borg/issues/3753#issuecomment-454011810
msgpack-python = super.msgpack-python.overridePythonAttrs (oldAttrs: rec {
version = "0.5.6";
src = oldAttrs.src.override {
inherit version;
sha256 = "0ee8c8c85aa651be3aa0cd005b5931769eaa658c948ce79428766f1bd46ae2c3";
};
});
};
};
in python.pkgs.buildPythonApplication rec {
2018-03-31 20:11:31 +00:00
pname = "borgbackup";
version = "1.1.10";
2018-03-31 20:11:31 +00:00
2019-02-14 12:22:37 +00:00
src = python.pkgs.fetchPypi {
2018-03-31 20:11:31 +00:00
inherit pname version;
sha256 = "1pp70p4n5kamvcbl4d8021ggrxhyykmg9isjg4yd3wags8b19d7g";
};
2019-02-14 12:22:37 +00:00
nativeBuildInputs = with python.pkgs; [
2016-01-24 03:02:27 +00:00
# For building documentation:
sphinx guzzle_sphinx_theme
2016-01-24 03:02:27 +00:00
];
buildInputs = [
2019-02-14 12:22:37 +00:00
libb2 lz4 zstd openssl python.pkgs.setuptools_scm
] ++ stdenv.lib.optionals stdenv.isLinux [ acl ];
2019-02-14 12:22:37 +00:00
propagatedBuildInputs = with python.pkgs; [
cython msgpack-python
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ llfuse ];
preConfigure = ''
export BORG_OPENSSL_PREFIX="${openssl.dev}"
2016-09-09 15:24:00 +00:00
export BORG_LZ4_PREFIX="${lz4.dev}"
export BORG_LIBB2_PREFIX="${libb2}"
2018-04-16 06:32:28 +00:00
export BORG_LIBZSTD_PREFIX="${zstd}"
'';
makeWrapperArgs = [
''--prefix PATH ':' "${openssh}/bin"''
];
2016-01-24 03:02:27 +00:00
postInstall = ''
make -C docs singlehtml
mkdir -p $out/share/doc/borg
cp -R docs/_build/singlehtml $out/share/doc/borg/html
make -C docs man
mkdir -p $out/share/man
cp -R docs/_build/man $out/share/man/man1
2018-05-13 19:43:43 +00:00
mkdir -p $out/share/bash-completion/completions
cp scripts/shell_completions/bash/borg $out/share/bash-completion/completions/
mkdir -p $out/share/fish/vendor_completions.d
cp scripts/shell_completions/fish/borg.fish $out/share/fish/vendor_completions.d/
mkdir -p $out/share/zsh/site-functions
cp scripts/shell_completions/zsh/_borg $out/share/zsh/site-functions/
2016-01-24 03:02:27 +00:00
'';
2019-02-14 12:22:37 +00:00
checkInputs = with python.pkgs; [
2018-08-12 22:16:34 +00:00
pytest
];
checkPhase = ''
HOME=$(mktemp -d) py.test --pyargs borg.testsuite
'';
# 63 failures, needs pytest-benchmark
doCheck = false;
meta = with stdenv.lib; {
description = "A deduplicating backup program (attic fork)";
2018-05-13 19:43:43 +00:00
homepage = https://www.borgbackup.org;
license = licenses.bsd3;
platforms = platforms.unix; # Darwin and FreeBSD mentioned on homepage
2018-08-12 22:16:34 +00:00
maintainers = with maintainers; [ flokli dotlambda ];
};
}