2020-10-13 22:50:37 +01:00
|
|
|
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper
|
2020-07-05 21:25:06 +01:00
|
|
|
|
, nixosTests, rclone }:
|
2017-03-15 22:44:09 +00:00
|
|
|
|
|
2020-10-13 22:50:37 +01:00
|
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "restic";
|
2021-02-25 22:00:20 +00:00
|
|
|
|
version = "0.12.0";
|
2017-03-15 22:44:09 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "restic";
|
|
|
|
|
repo = "restic";
|
|
|
|
|
rev = "v${version}";
|
2021-02-25 22:00:20 +00:00
|
|
|
|
sha256 = "07gxf56g45gj2arvdnrr9656i9ykhy1y6k6zdlni1sa3aa2x2bbf";
|
2017-03-15 22:44:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-02-25 22:00:20 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# The TestRestoreWithPermissionFailure test fails in Nix’s build sandbox
|
|
|
|
|
./0001-Skip-testing-restore-with-permission-failure.patch
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
vendorSha256 = "14z22lmdd681rn61alpqbn3i9fn0kcc74321vjvhz2ix2mch3c1z";
|
2020-10-13 22:50:37 +01:00
|
|
|
|
|
2020-04-26 09:34:20 +01:00
|
|
|
|
subPackages = [ "cmd/restic" ];
|
|
|
|
|
|
2020-07-05 21:25:06 +01:00
|
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
2020-04-26 09:34:20 +01:00
|
|
|
|
|
2020-02-07 10:39:18 +00:00
|
|
|
|
passthru.tests.restic = nixosTests.restic;
|
|
|
|
|
|
2020-10-13 22:50:37 +01:00
|
|
|
|
postPatch = ''
|
|
|
|
|
rm cmd/restic/integration_fuse_test.go
|
|
|
|
|
'';
|
|
|
|
|
|
2020-07-05 21:25:06 +01:00
|
|
|
|
postInstall = ''
|
|
|
|
|
wrapProgram $out/bin/restic --prefix PATH : '${rclone}/bin'
|
|
|
|
|
'' + lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2020-04-28 02:50:57 +01:00
|
|
|
|
$out/bin/restic generate \
|
2020-04-26 09:34:20 +01:00
|
|
|
|
--bash-completion restic.bash \
|
|
|
|
|
--zsh-completion restic.zsh \
|
|
|
|
|
--man .
|
|
|
|
|
installShellCompletion restic.{bash,zsh}
|
|
|
|
|
installManPage *.1
|
2017-03-15 22:44:09 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2018-05-21 21:15:33 +01:00
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://restic.net";
|
2017-03-15 22:44:09 +00:00
|
|
|
|
description = "A backup program that is fast, efficient and secure";
|
2017-08-03 15:37:04 +01:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-03-15 22:44:09 +00:00
|
|
|
|
license = licenses.bsd2;
|
2017-05-29 22:53:49 +01:00
|
|
|
|
maintainers = [ maintainers.mbrgm ];
|
2017-03-15 22:44:09 +00:00
|
|
|
|
};
|
|
|
|
|
}
|