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

51 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper
2020-07-05 21:25:06 +01:00
, nixosTests, rclone }:
2017-03-15 22:44:09 +00:00
buildGoModule rec {
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 Nixs build sandbox
./0001-Skip-testing-restore-with-permission-failure.patch
];
vendorSha256 = "14z22lmdd681rn61alpqbn3i9fn0kcc74321vjvhz2ix2mch3c1z";
subPackages = [ "cmd/restic" ];
2020-07-05 21:25:06 +01:00
nativeBuildInputs = [ installShellFiles makeWrapper ];
2020-02-07 10:39:18 +00:00
passthru.tests.restic = nixosTests.restic;
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) ''
$out/bin/restic generate \
--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; {
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
};
}