c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper
|
||
, nixosTests, rclone }:
|
||
|
||
buildGoModule rec {
|
||
pname = "restic";
|
||
version = "0.15.2";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "restic";
|
||
repo = "restic";
|
||
rev = "v${version}";
|
||
hash = "sha256-YJBHk/B8+q5f0k5i5hpucsJK4T/cRu9Jv7+O6vlT64Q=";
|
||
};
|
||
|
||
patches = [
|
||
# The TestRestoreWithPermissionFailure test fails in Nix’s build sandbox
|
||
./0001-Skip-testing-restore-with-permission-failure.patch
|
||
];
|
||
|
||
vendorHash = "sha256-GWFaCfiE8Ph2uBTBI0E47pH+EJsMsMr1NDuaIGvyXRM=";
|
||
|
||
subPackages = [ "cmd/restic" ];
|
||
|
||
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
||
|
||
passthru.tests.restic = nixosTests.restic;
|
||
|
||
postPatch = ''
|
||
rm cmd/restic/integration_fuse_test.go
|
||
'';
|
||
|
||
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
|
||
'';
|
||
|
||
meta = with lib; {
|
||
homepage = "https://restic.net";
|
||
changelog = "https://github.com/restic/restic/blob/${src.rev}/CHANGELOG.md";
|
||
description = "A backup program that is fast, efficient and secure";
|
||
platforms = platforms.linux ++ platforms.darwin;
|
||
license = licenses.bsd2;
|
||
maintainers = [ maintainers.mbrgm maintainers.dotlambda ];
|
||
};
|
||
}
|