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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.8 KiB
Nix
Raw Normal View History

2022-09-11 18:16:48 +00:00
{ borgbackup, coreutils, lib, python3Packages, systemd, installShellFiles, borgmatic, testers }:
2021-02-17 04:49:52 +00:00
python3Packages.buildPythonApplication rec {
pname = "borgmatic";
2023-03-25 10:55:59 +00:00
version = "1.7.9";
2021-02-17 04:49:52 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2023-03-25 10:55:59 +00:00
sha256 = "sha256-v3Qxwy7V6rqX90G4/Xp6mVTUkrqDXmudgh3th0GCjuk=";
2021-02-17 04:49:52 +00:00
};
nativeCheckInputs = with python3Packages; [ flexmock pytestCheckHook pytest-cov ];
2021-02-17 04:49:52 +00:00
# - test_borgmatic_version_matches_news_version
# The file NEWS not available on the pypi source, and this test is useless
disabledTests = [
"test_borgmatic_version_matches_news_version"
];
nativeBuildInputs = [ installShellFiles ];
2021-02-17 04:49:52 +00:00
propagatedBuildInputs = with python3Packages; [
borgbackup
colorama
2021-09-10 15:34:56 +00:00
jsonschema
ruamel-yaml
2021-02-17 04:49:52 +00:00
requests
setuptools
];
postInstall = ''
installShellCompletion --cmd borgmatic \
--bash <($out/bin/borgmatic --bash-completion)
2021-02-17 04:49:52 +00:00
mkdir -p $out/lib/systemd/system
cp sample/systemd/borgmatic.timer $out/lib/systemd/system/
# there is another "sleep", so choose the one with the space after it
# due to https://github.com/borgmatic-collective/borgmatic/commit/2e9f70d49647d47fb4ca05f428c592b0e4319544
2021-02-17 04:49:52 +00:00
substitute sample/systemd/borgmatic.service \
$out/lib/systemd/system/borgmatic.service \
--replace /root/.local/bin/borgmatic $out/bin/borgmatic \
--replace systemd-inhibit ${systemd}/bin/systemd-inhibit \
--replace "sleep " "${coreutils}/bin/sleep "
2021-02-17 04:49:52 +00:00
'';
2022-09-11 18:16:48 +00:00
passthru.tests.version = testers.testVersion { package = borgmatic; };
2021-02-17 04:49:52 +00:00
meta = with lib; {
description = "Simple, configuration-driven backup software for servers and workstations";
homepage = "https://torsion.org/borgmatic/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ imlonghao ];
};
}